1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 01:48:26 +02:00

news for mysqli_savepoint and mysql_release_savepoint

This commit is contained in:
Andrey Hristov
2013-02-08 18:33:45 +01:00
parent a5b426eeff
commit 3d9a31efdf
+3 -1
View File
@@ -23,15 +23,17 @@ PHP NEWS
to master.
- mysqli
. Add mysqli_begin_transaction()/mysqli::begin_transaction(). Implemented all
. Added mysqli_begin_transaction()/mysqli::begin_transaction(). Implemented all
options, per MySQL 5.6, which can be used with START TRANSACTION, COMMIT
and ROLLBACK through options to mysqli_commit()/mysqli_rollback() and their
respective OO counterparts. They work in libmysql and mysqlnd mode. (Andrey)
. Added mysqli_savepoint(), mysqli_release_savepoint(). (Andrey)
- mysqlnd
. Add new begin_transaction() call to the connection object. Implemented all
options, per MySQL 5.6, which can be used with START TRANSACTION, COMMIT
and ROLLBACK. (Andrey)
. Added mysqlnd_savepoint(), mysqlnd_release_savepoint(). (Andrey)
- Sockets:
. Added recvmsg() and sendmsg() wrappers. (Gustavo)