mysqli::release_savepoint

mysqli_release_savepoint

(PHP 5 >= 5.5.0, PHP 7)

mysqli::release_savepoint -- mysqli_release_savepointRemoves the named savepoint from the set of savepoints of the current transaction

Descrierea

Stil obiect-orientat

public mysqli::release_savepoint ( string $name ) : bool

Stil procedural:

mysqli_release_savepoint ( mysqli $link , string $name ) : bool

This function is identical to executing $mysqli->query("RELEASE SAVEPOINT `$name`");. This function does not trigger commit or rollback.

Parametri

link

Numai stilul procedural: Un identificator al legăturii întors de mysqli_connect() sau mysqli_init()

name

The identifier of the savepoint.

Valorile întoarse

Întoarce valoarea true în cazul succesului sau false în cazul eșecului.

A se vedea și

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top