(PHP 5, PHP 7)
mysqli::rollback -- mysqli_rollback — Rolls back current transaction
Object oriented style
public mysqli::rollback ([ int $flags = 0 [, string $name ]] ) : bool
Procedural style
mysqli_rollback ( mysqli $link [, int $flags = 0 [, string $name ]] ) : bool
Rollbacks the current transaction for the database.
link
Procedural style only: A link identifier returned by mysqli_connect() or mysqli_init()
flags
A bitmask of MYSQLI_TRANS_COR_*
constants.
name
If provided then ROLLBACK/*name*/
is executed.
Returns true
on success or false
on failure.
Note:
This function does not work with non transactional table types (like MyISAM or ISAM).
Version | Description |
---|---|
5.5.0 | Added flags and name parameters. |
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/mysqli.rollback.php