Reputation: 11
How to make transaction using IB Expert? I need a manual or something like
begin transaction
create table someTable(a int,b int)
insert into someTable values(1,2)
insert into someTable values(3,4)
commit transaction
but working in Firebird to see the syntax.
Upvotes: 1
Views: 401
Reputation: 2519
Try to do it after update or insert statement:
commit work;
Do it in a separate query
Upvotes: 1