(PHP 5, PHP 7)
mysqli::rollback -- mysqli_rollback — Rolls back current transaction
Objektorientierter Stil
$flags
= 0
[, string $name
]] ) : boolProzeduraler Stil
Rollbacks the current transaction for the database.
link
Nur bei prozeduralem Aufruf: Ein von mysqli_connect() oder mysqli_init() zurückgegebenes Verbindungsobjekt.
flags
A bitmask of MYSQLI_TRANS_COR_*
constants.
name
If provided then ROLLBACK/*name*/
is executed.
Gibt bei Erfolg TRUE
zurück. Im Fehlerfall wird FALSE
zurückgegeben.
Hinweis:
This function does not work with non transactional table types (like MyISAM or ISAM).
Version | Beschreibung |
---|---|
5.5.0 |
Added flags and name
parameters.
|