In MS SQL Server, I can easily add multiple transactions to transactions, for example:
begin tran
insert into mytable values (1, 2, 3)
insert into mytable values (4, 5, 6)
commit tran
I am trying to do the same in Firebird, but I cannot understand the syntax. Googling for Firebird transaction syntax does not return anything useful. I found enough to know that transaction support exists, but there are no examples of how to use it correctly.
So, I suppose I can ask here. Does anyone know how to write a transaction using multiple inserts for a Firebird database?
source
share