Subject RE: [firebird-php] auto commited DML commands from PHP 4.3
Author Alan McDonald
> Hi there,
>
> where can I specify whether auto commit destructive commands
> while php script is finished with no transaction started.
> On 1.5.2 linux-nptl, php 4.3.9.
>
> Michal
>

every php page which opens a connection will start an implicit transaction -
when the page compltes successfully the transaction will be commited
automatically
if there's a php exception - you get rollback
all this is overridden by your use of explicit transactions
Alan