From cd2eae76e7c53be3f9a3ed6427f38ea452d2560f Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Mon, 27 Jun 2016 14:14:18 +0000 Subject: [PATCH] SQLite3::bind(Param|Value) accepts ints as well as strings git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@339509 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/sqlite3/sqlite3stmt/bindparam.xml | 4 ++-- reference/sqlite3/sqlite3stmt/bindvalue.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/reference/sqlite3/sqlite3stmt/bindparam.xml b/reference/sqlite3/sqlite3stmt/bindparam.xml index 377e332a63..2016aa1124 100644 --- a/reference/sqlite3/sqlite3stmt/bindparam.xml +++ b/reference/sqlite3/sqlite3stmt/bindparam.xml @@ -11,7 +11,7 @@ &reftitle.description; public boolSQLite3Stmt::bindParam - stringsql_param + mixedsql_param mixedparam inttype @@ -28,7 +28,7 @@ sql_param - An string identifying the statement variable to which the + Either a string or an int identifying the statement variable to which the parameter should be bound. diff --git a/reference/sqlite3/sqlite3stmt/bindvalue.xml b/reference/sqlite3/sqlite3stmt/bindvalue.xml index 1be1cf5826..9761fbd1e7 100644 --- a/reference/sqlite3/sqlite3stmt/bindvalue.xml +++ b/reference/sqlite3/sqlite3stmt/bindvalue.xml @@ -11,7 +11,7 @@ &reftitle.description; public boolSQLite3Stmt::bindValue - stringsql_param + mixedsql_param mixedvalue inttype @@ -28,7 +28,7 @@ sql_param - An string identifying the statement variable to which the + Either a string or an int identifying the statement variable to which the value should be bound.