mysqli::release_savepoint
PHP function
Edit on GitHub ✎
(PHP 5 >= 5.5.0, PHP 7, PHP 8)
Removes the named savepoint from the set of savepoints of the current transaction
Description
Oop
mysqli::release_savepoint(string $name): bool
Procedural:
mysqli_release_savepoint(mysqli $mysql, string $name): bool
This function is identical to executing $mysqli->query("RELEASE SAVEPOINT `$name`");. This function does not trigger commit or rollback.
Parameters
nameThe identifier of the savepoint.
Return Values
Success