mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Returns result (bug #29601)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@166482 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
2c6b4b7e97
commit
d2d740a6b9
1 changed files with 4 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<refentry id="function.sqlite-query">
|
||||
<refnamediv>
|
||||
<refname>sqlite_query</refname>
|
||||
|
@ -25,15 +25,11 @@
|
|||
parameter).
|
||||
</para>
|
||||
<para>
|
||||
For queries that return rows, this function will return a result handle
|
||||
which can then be used with functions such as
|
||||
<function>sqlite_fetch_array</function> and
|
||||
This function will return a result handle or &false; for failure.
|
||||
For queries that return rows, the result handle can then be used with
|
||||
functions such as <function>sqlite_fetch_array</function> and
|
||||
<function>sqlite_seek</function>.
|
||||
</para>
|
||||
<para>
|
||||
For other kinds of queries, this function will return a boolean result;
|
||||
&true; for success or &false; for failure.
|
||||
</para>
|
||||
<para>
|
||||
Regardless of the query type, this function will return &false; if the
|
||||
query failed.
|
||||
|
|
Loading…
Reference in a new issue