odbc_autocommit
(PHP 4, PHP 5, PHP 7, PHP 8)
odbc_autocommit — Toggle autocommit behaviour
說明
odbc_autocommit(resource
$odbc, bool $enable = false): int|boolToggles autocommit behaviour.
By default, auto-commit is on for a connection. Disabling auto-commit is equivalent with starting a transaction.
參數
-
odbc -
ODBC 連線識別符號,詳見 odbc_connect()。
-
enable -
If
enableistrue, auto-commit is enabled, if it isfalseauto-commit is disabled.
返回值
Without the enable parameter, this function returns
auto-commit status for odbc. Non-zero is
returned if auto-commit is on, 0 if it is off, or false if an error
occurs.
If enable is set, this function returns true on
success and false on failure.