PHP 8.3.4 Released!

mysqli::savepoint

mysqli_savepoint

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

mysqli::savepoint -- mysqli_savepointSet a named transaction savepoint

Descrizione

Stile orientato agli oggetti

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

Stile procedurale:

mysqli_savepoint(mysqli $mysql, string $name): bool

This function is identical to executing $mysqli->query("SAVEPOINT `$name`");

Elenco dei parametri

link

Solo nello stile procedurale: un identificatore restituito da mysqli_connect() o mysqli_init()

name

The identifier of the savepoint.

Valori restituiti

Restituisce true in caso di successo, false in caso di fallimento.

Vedere anche:

add a note

User Contributed Notes

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