From cb8d8b9fa62d750b90297fa0573f68e7b9c9309e Mon Sep 17 00:00:00 2001 From: Thomas Punt Date: Sun, 8 May 2016 20:39:30 +0000 Subject: [PATCH] Document the PDO::MYSQL_ATTR_MULTI_STATEMENTS constant git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@339155 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/pdo_mysql/constants.xml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/reference/pdo_mysql/constants.xml b/reference/pdo_mysql/constants.xml index fb727f9a21..1d2550c3a5 100644 --- a/reference/pdo_mysql/constants.xml +++ b/reference/pdo_mysql/constants.xml @@ -230,6 +230,26 @@ if ($db->getAttribute(PDO::ATTR_DRIVER_NAME) == 'mysql') { + + + PDO::MYSQL_ATTR_MULTI_STATEMENTS + (integer) + + + + Disables multi query execution in both PDO::prepare + and PDO::query when set to &false;. + + + Note, this constant can only be used in the driver_options + array when constructing a new database handle. + + + &version.exists.asof; 5.5.21 and PHP 5.6.5. + + + +