Artem
Artem

Reputation: 11

Transaction in firebird 1.5

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

Answers (1)

bartolo-otrit
bartolo-otrit

Reputation: 2519

Try to do it after update or insert statement:

commit work;

Do it in a separate query

Upvotes: 1

Related Questions