1

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.

Rohit Gupta
  • 4,022
  • 20
  • 31
  • 41
Artem
  • 11
  • 2

1 Answers1

1

Try to do it after update or insert statement:

commit work;

Do it in a separate query

bartolo-otrit
  • 2,396
  • 3
  • 32
  • 50