(PHP 5, PHP 7)
mysqli::commit -- mysqli_commit — Commits the current transaction
Object oriented style
$flags
= 0
[, string $name
]] ) : boolProcedural style
Commits the current transaction for the database connection.
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 COMMIT/*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.
|