mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
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
This commit is contained in:
parent
7b918120f8
commit
cd2eae76e7
2 changed files with 4 additions and 4 deletions
|
@ -11,7 +11,7 @@
|
|||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<modifier>public</modifier> <type>bool</type><methodname>SQLite3Stmt::bindParam</methodname>
|
||||
<methodparam><type>string</type><parameter>sql_param</parameter></methodparam>
|
||||
<methodparam><type>mixed</type><parameter>sql_param</parameter></methodparam>
|
||||
<methodparam><type>mixed</type><parameter role="reference">param</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>int</type><parameter>type</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
|
@ -28,7 +28,7 @@
|
|||
<term><parameter>sql_param</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
An <type>string</type> identifying the statement variable to which the
|
||||
Either a <type>string</type> or an <type>int</type> identifying the statement variable to which the
|
||||
parameter should be bound.
|
||||
</para>
|
||||
</listitem>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<modifier>public</modifier> <type>bool</type><methodname>SQLite3Stmt::bindValue</methodname>
|
||||
<methodparam><type>string</type><parameter>sql_param</parameter></methodparam>
|
||||
<methodparam><type>mixed</type><parameter>sql_param</parameter></methodparam>
|
||||
<methodparam><type>mixed</type><parameter>value</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>int</type><parameter>type</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
|
@ -28,7 +28,7 @@
|
|||
<term><parameter>sql_param</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
An <type>string</type> identifying the statement variable to which the
|
||||
Either a <type>string</type> or an <type>int</type> identifying the statement variable to which the
|
||||
value should be bound.
|
||||
</para>
|
||||
</listitem>
|
||||
|
|
Loading…
Reference in a new issue