Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17014 программистов и 1769 роботов. Сейчас ищут 1962 программиста ...
Приступая к работе

MysqlndUhConnection::setAutocommit - Turns on or off auto-committing database modifications

Вернуться к: MysqlndUhConnection

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

Примеры

Пример #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

Смотрите также



Вернуться к: MysqlndUhConnection

© 2024 «PHP.RU — Сообщество PHP-Программистов»
Главная | Форум | Реклама на сайте | Контакты VIP Сувениры
Разработка компании ODware