mysqli::commit

mysqli_commit

(PHP 5, PHP 7)

mysqli::commit -- mysqli_commitCommits the current transaction

Description

Object oriented style

public mysqli::commit ( int $flags = 0 , string|null $name = null ) : bool

Procedural style

mysqli_commit ( mysqli $mysql , int $flags = 0 , string|null $name = null ) : bool

Commits the current transaction for the database connection.

Parameters

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.

Return Values

Returns true on success or false on failure.

Notes

Note:

This function does not work with non transactional table types (like MyISAM or ISAM).

Changelog

Version Description
8.0.0 name is now nullable.

Examples

See the mysqli::begin_transaction() example.

See Also