MysqlndUhConnection::setAutocommit

(PECL mysqlnd-uh >= 1.0.1-alpha, PHP >= 5.4.0)

MysqlndUhConnection::setAutocommitTurns on or off auto-committing database modifications

설명

public bool MysqlndUhConnection::setAutocommit ( mysqlnd_connection $connection , int $mode )

Turns on or off auto-committing database modifications

인수

connection

Mysqlnd connection handle. Do not modify!

mode

Whether to turn on auto-commit or not.

반환값

Returns TRUE on success. Otherwise, returns FALSE

예제

Example #1 MysqlndUhConnection::setAutocommit() example

<?php
class proxy extends MysqlndUhConnection {
 public function 
setAutocommit($res$mode) {
  
printf("%s(%s)\n"__METHOD__var_export(func_get_args(), true));
  
$ret parent::setAutocommit($res$mode);
  
printf("%s returns %s\n"__METHOD__var_export($rettrue));
  return 
$ret;
 }
}
mysqlnd_uh_set_connection_proxy(new proxy());
$mysqli = new mysqli("localhost""root""""test");
$mysqli->autocommit(false);
$mysqli->autocommit(true);
?>

위 예제의 출력:

proxy::setAutocommit(array (
  0 => NULL,
  1 => 0,
))
proxy::setAutocommit returns true
proxy::setAutocommit(array (
  0 => NULL,
  1 => 1,
))
proxy::setAutocommit returns true

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top