fbsql_autocommit

(PHP 4 >= 4.0.6, PHP 5 < 5.3.0)

fbsql_autocommitEnable or disable autocommit

Descrição

fbsql_autocommit ( resource $link_identifier , bool $OnOff = ? ) : bool

Returns the current autocommit status.

Parâmetros

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().

Valor Retornado

Returns the current autocommit status, as a boolean.

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top