ODBC 함수 목록
PHP Manual

odbc_autocommit

(PHP 4, PHP 5)

odbc_autocommitToggle autocommit behaviour

설명

mixed odbc_autocommit ( resource $connection_id [, bool $OnOff= false ] )

Toggles autocommit behaviour.

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

인수

connection_id

ODBC 접속 식별자. odbc_connect()를 참고하십시오.

OnOff

If OnOff is TRUE, auto-commit is enabled, if it is FALSE auto-commit is disabled.

반환값

Without the OnOff parameter, this function returns auto-commit status for connection_id . Non-zero is returned if auto-commit is on, 0 if it is off, or FALSE if an error occurs.

If OnOff is set, this function returns TRUE on success and FALSE on failure.

참고


ODBC 함수 목록
PHP Manual