Subject RE: [Firebird-Architect] Autonomous Transaction Routines
Author Claudio Valderrama C.
> -----Original Message-----
> From: Firebird-Architect@yahoogroups.com
> [mailto:Firebird-Architect@yahoogroups.com]On Behalf Of Vlad Khorsun
> Sent: Viernes, 09 de Noviembre de 2007 9:36
>
> I, personally, prefer
>
> BEGIN [AUTONOMOUS [<tran_options> TRANSACTION]]
> ...
> END
>
> where [<tran_options> TRANSACTION] may be implemented later

From parse.y:

set_transaction : SET TRANSACTION tran_opt_list_m
{$$ = make_node (nod_trans, 1, make_list ($3)); }
;

Why can't we extend this command instead of having to learn a different
syntax?

C.