Subject | Re: [firebird-support] Embedded Firebird : Transaction |
---|---|
Author | Ivan Prenosil |
Post date | 2005-09-20T10:33Z |
> Ivan,Of course you always have to use some API, I just wanted to say
>
> IP> Transactions can be started/ended by both API and DSQL,
> IP> so you do *not* have to use API (unless the limitation is in your
> IP> access components).
>
> huh? Didn't know that. Care to tell how?
that you do not have to use specialized transaction oriented API calls
(like isc_start_transaction, isc_commit_transaction), but you can use
general API calls for executing DSQL commands.
E.g. you can start transaction by passing "SET TRANSACTION" command
to isc_dsql_execute_immediate() call.
Ivan