php8.5
Home/ Manual/ uodbc / functions/ odbc_autocommit

odbc_autocommit

PHP function Edit on GitHub ✎

(PHP 4, PHP 5, PHP 7, PHP 8)

Toggle autocommit behaviour

Description

odbc_autocommit(Odbc\Connection $odbc, bool|null $enable = null): int|bool

Toggles autocommit behaviour.

By default, auto-commit is on for a connection. Disabling auto-commit is equivalent with starting a transaction.

Parameters

odbc

Id

enable

If enable is true, auto-commit is enabled, if it is false auto-commit is disabled. If null is passed, this function returns the auto-commit status for odbc.

Return Values

With a null 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 non-null, this function returns true on success and false on failure.

Changelog

VersionDescription
8.3.0enable is now nullable.

See Also

Source: reference/uodbc/functions/odbc-autocommit.xml · from the official PHP manual (php/doc-en)