php8.5
Home/ Manual/ mysqli / mysqli/ mysqli::release_savepoint

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

name

The identifier of the savepoint.

Return Values

Success

See Also

Source: reference/mysqli/mysqli/release-savepoint.xml · from the official PHP manual (php/doc-en)