mysqli::rollback
mysqli_rollback
(PHP 5, PHP 7, PHP 8)
mysqli::rollback -- mysqli_rollback — Rolls back current transaction
Beschreibung
Objektorientierter Stil
$flags
= 0, ?string $name
= null
): boolProzeduraler Stil
Rollbacks the current transaction for the database.
Parameter-Liste
-
mysql
-
Nur bei prozeduralem Aufruf: Ein von mysqli_connect() oder mysqli_init() zurückgegebenes mysqli-Objekt.
-
flags
-
A bitmask of
MYSQLI_TRANS_COR_*
constants. -
name
-
If provided then
ROLLBACK/*name*/
is executed.
Rückgabewerte
Gibt bei Erfolg true
zurück. Bei einem Fehler wird false
zurückgegeben.
Changelog
Version | Beschreibung |
---|---|
8.0.0 |
name is now nullable.
|
Anmerkungen
Hinweis:
This function does not work with non transactional table types (like MyISAM or ISAM).
Siehe auch
- mysqli_begin_transaction() - Starts a transaction
- mysqli_commit() - Commits the current transaction
- mysqli_autocommit() - Aktiviert oder deaktiviert das automatische Übertragen von Datenbankänderungen
- mysqli_release_savepoint() - Removes the named savepoint from the set of savepoints of the current transaction