Manuál PHP | ||
---|---|---|
PÅ™edcházejÃcà | Dalšà |
mysqli_autocommit
(PHP 5)
mysqli_autocommit(no version information, might be only in CVS)
mysqli->autocommit() -- Turns on or off auto-commiting database modificationsPopis
Procedural style:
bool mysqli_autocommit ( mysqli link, bool mode )Object oriented style (method)
class mysqli {bool autocommit ( bool mode )
}
Turns on or off auto-commit mode on queries for the database connection.
To determine the current state of autocommit use the SQL command SELECT @@autocommit.
Seznam parametrů
link
Procedural style only: A link identifier returned by mysqli_connect() or mysqli_init()
mode
Whether to turn on auto-commit or not.
Poznámky
Poznámka: This function doesn't work with non transactional table types (like MyISAM or ISAM).
PÅ™Ãklady
PÅ™Ãklad 2. Procedural style
|
Výše uvedený pÅ™Ãklad vypÃÅ¡e:
Autocommit is 1 |
PÅ™edcházejÃcà | Domů | Dalšà |
mysqli_affected_rows | Nahoru |