(PHP 4 >= 4.0.6, PHP 5 < 5.3.0)
fbsql_autocommit — Enable or disable autocommit
$link_identifier
, bool $OnOff
= ?
) : boolReturns the current autocommit status.
link_identifier
Um identificador de link FrontBase retornado porfbsql_connect() ou fbsql_pconnect().
Se opcional e não especificado a função tentará localizar um link aberto ao um servidor FrontBase e se nenhum link for encontrado será tentado criar um como se fbsql_connect() fosse chamado sem argumentos.
OnOff
If this optional parameter is given the auto commit status will be changed.
With OnOff
set to true
each statement will be
committed automatically, if no errors was found.
With OnOff set to false
the user must commit or rollback the
transaction using either fbsql_commit() or
fbsql_rollback().
Returns the current autocommit status, as a boolean.