mysql_autocommit
Syntax
my_bool mysql_autocommit(MYSQL * mysql, my_bool auto_mode);
mysql
- a mysql handle, identifier, which was previously allocated by mysql_init() or mysql_real_connect().auto_mode
- whether to turn autocommit on or not.
Description
Toggles autocommit mode on or off for the current database connection. Autocommit mode will be set if mode=1 or unset if mode=0. Returns zero on success, or nonzero if an error occurred. Parameters
Turning off autocommit in sql
SET AUTOCOMMIT=0;
Last updated
Was this helpful?