mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
fixed class names
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@287149 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
1c9a3b2322
commit
0734f520c6
3 changed files with 8 additions and 8 deletions
|
@ -10,11 +10,11 @@
|
|||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<modifier>public</modifier> <type>SQLite3_stmt</type><methodname>SQLite3::prepare</methodname>
|
||||
<modifier>public</modifier> <type>SQLite3Stmt</type><methodname>SQLite3::prepare</methodname>
|
||||
<methodparam><type>string</type><parameter>query</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Prepares an SQL statement for execution and returns an SQLite3_stmt object.
|
||||
Prepares an SQL statement for execution and returns an <classname>SQLite3Stmt</classname> object.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
@ -38,7 +38,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an SQLite3_stmt object on success or &false; on failure.
|
||||
Returns an <classname>SQLite3Stmt</classname> object on success or &false; on failure.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
|
|
@ -10,11 +10,11 @@
|
|||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<modifier>public</modifier> <type>SQLite3_result</type><methodname>SQLite3::query</methodname>
|
||||
<modifier>public</modifier> <type>SQLite3Result</type><methodname>SQLite3::query</methodname>
|
||||
<methodparam><type>string</type><parameter>query</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Executes an SQL query, returning an SQLite3_result object if the query
|
||||
Executes an SQL query, returning an <classname>SQLite3Result</classname> object if the query
|
||||
returns results.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
@ -39,7 +39,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an SQLite3_result object if the query returns results. Otherwise,
|
||||
Returns an <classname>SQLite3Result</classname> object if the query returns results. Otherwise,
|
||||
returns &true; if the query succeeded, &false; on failure.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<modifier>public</modifier> <type>SQLite3_result</type><methodname>SQLite3Stmt::execute</methodname>
|
||||
<modifier>public</modifier> <type>SQLite3Result</type><methodname>SQLite3Stmt::execute</methodname>
|
||||
<void />
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
|
@ -26,7 +26,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an SQLite3_result object on successful execution of the prepared
|
||||
Returns an <classname>SQLite3Result</classname> object on successful execution of the prepared
|
||||
statement, &false; on failure.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
|
Loading…
Reference in a new issue