Subject Re: [firebird-php] PHP and transactions
Author Jochem Maas
Lester Caine wrote:
> OK - now that I have established that ADOdb does not currently actually
> handle transactions, I am playing with things in that area.
> In Builder I just call 'Refresh' to see the changes that happened in the
> transaction in the main connection.
> HOW do I do the same thing in PHP? Apart from dropping and re-making the
> connection?

check out the transaction args that you can pass as the first arg to ibase_trans()
with the isolation level constants yuou can determine what the transaction itself
sees.

if you have a transaction and you want to have its changes visible in the default
connection _without_ closing the transaction checkout ibase_commit_ret() if you
want to close the transaction at then a simple ibase_commit() will suffice.

or am I completely misunderstanding you :-/

>