PHP Portal » PHP Handbuch » mysqli::autocommit

Werbung

mysqli::autocommit


(PHP 5)

mysqli::autocommit -- mysqli_autocommitTurns on or off auto-commiting database modifications

Beschreibung

Object oriented style (method)

bool mysqli::autocommit ( bool $mode )

Procedural style:

bool mysqli_autocommit ( mysqli $link , bool $mode )

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.

Parameter-Liste

link

Nur bei prozeduralem Aufruf: Ein von mysqli_connect() oder mysqli_init() zurückgegebenes Verbindungsobjekt.

mode

Whether to turn on auto-commit or not.

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Anmerkungen

Hinweis: This function doesn't work with non transactional table types (like MyISAM or ISAM).

Beispiele

PHP Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$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();

PHP Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$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);

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Autocommit is 1

Siehe auch