Subject Re: [firebird-support] Getting transaction ID
Author Helen Borrie
At 02:00 PM 20/01/2004 +0000, you wrote:
>Is there SQL or stored(or UID) function to get current transaction ID ?

select current_transaction as tran_id from rdb$database;

insert into mytable (a, b, tran_d)
values('alpha', 'beta', current_transaction);
and so on..

/hb