PHP. Руководство по PHP. 2005
mysqli_autocommit
mysqli_autocommit
(PHP 5)mysqli_autocommit
(no version information, might be only in CVS)mysqli->autocommit -- Turns on or off auto-commiting database modifications
Description
Procedural style:bool mysqli_autocommit (mysqli link, bool mode)
Object oriented style (method)class mysqli {
bool autocommit (bool mode)
}
mysqli_autocommit() is used to turn on or off auto-commit mode
on queries for the database connection represented by the link
object.
Замечание:
mysqli_autocommit() doesn't work with non transactional
table types (like MyISAM or ISAM).
To determine the current state of autocommit use the SQL command
'SELECT @@autocommit'.