(PECL maxdb >= 1.0)
maxdb_autocommit -- maxdb::auto_commit — Turns on or off auto-commiting database modifications
Styl proceduralny
$link
, bool $mode
)Styl obiektowy
$mode
)
maxdb_autocommit() is used to turn on or off auto-commit mode
on queries for the database connection represented by the link
resource.
Zwraca TRUE
w przypadku powodzenia, FALSE
w
przypadku błędu.
Przykład #1 Styl obiektowy
<?php
$maxdb = new maxdb("localhost", "MONA", "RED", "DEMODB");
if (maxdb_connect_errno()) {
printf("Connect failed: %s\n", maxdb_connect_error());
exit();
}
/* turn autocommit on */
$maxdb->autocommit(TRUE);
/* close connection */
$maxdb->close();
?>
Przykład #2 Styl proceduralny
<?php
$link = maxdb_connect("localhost", "MONA", "RED", "DEMODB");
if (!$link) {
printf("Can't connect to localhost. Error: %s\n", maxdb_connect_error());
exit();
}
/* turn autocommit on */
maxdb_autocommit($link, TRUE);
/* close connection */
maxdb_close($link);
?>
Powyższy przykład wyświetli coś podobnego do: