|
 |
maxdb_autocommit (PECL) maxdb_autocommit (no version information, might be only in CVS) maxdb->auto_commit -- Turns on or off auto-commiting database modifications DescriptionProcedural style: bool maxdb_autocommit ( resource link, bool mode ) Object oriented style (method) class maxdb { bool auto_commit ( bool mode ) }
maxdb_autocommit() is used to turn on or off auto-commit mode
on queries for the database connection represented by the link
resource.
Return values
Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.
ExampleПример 1. Object oriented style
<?php
$maxdb = new maxdb("localhost", "MONA", "RED", "DEMODB");
if (maxdb_connect_errno()) {
printf("Connect failed: %s\n", maxdb_connect_error());
exit();
}
$maxdb->autocommit(TRUE);
$maxdb->close();
?>
|
|
Пример 2. Procedural style
<?php
$link = maxdb_connect("localhost", "MONA", "RED", "DEMODB");
if (!$link) {
printf("Can't connect to localhost. Error: %s\n", maxdb_connect_error());
exit();
}
maxdb_autocommit($link, TRUE);
maxdb_close($link);
?>
|
|
The above examples would produce no output.
maxdb_autocommit
There are no user contributed notes for this page.
| |