(PHP 5)
mysqli::autocommit -- mysqli_autocommit — Turns on or off auto-committing database modifications
Stile orientato agli oggetti
$mode
)Stile procedurale
Turns on or off auto-commit mode on queries for the database connection.
To determine the current state of autocommit use the SQL command SELECT @@autocommit.
link
Solo nello stile procedurale: un identificatore restituito da mysqli_connect() o mysqli_init()
mode
Whether to turn on auto-commit or not.
Restituisce TRUE
in caso di successo, FALSE
in caso di fallimento.
Nota:
This function doesn't work with non transactional table types (like MyISAM or ISAM).
Example #1 mysqli::autocommit() example
Stile orientato agli oggetti
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
/* turn autocommit on */
$mysqli->autocommit(TRUE);
if ($result = $mysqli->query("SELECT @@autocommit")) {
$row = $result->fetch_row();
printf("Autocommit is %s\n", $row[0]);
$result->free();
}
/* close connection */
$mysqli->close();
?>
Stile procedurale
<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
if (!$link) {
printf("Can't connect to localhost. Error: %s\n", mysqli_connect_error());
exit();
}
/* turn autocommit on */
mysqli_autocommit($link, TRUE);
if ($result = mysqli_query($link, "SELECT @@autocommit")) {
$row = mysqli_fetch_row($result);
printf("Autocommit is %s\n", $row[0]);
mysqli_free_result($result);
}
/* close connection */
mysqli_close($link);
?>
I precedenti esempi visualizzeranno:
Autocommit is 1