mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Returns remaining rows (bug #33830)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@191270 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
c89afafcbf
commit
2af11f173a
1 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.6 $ -->
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<refentry id="function.sqlite-fetch-all">
|
||||
<refnamediv>
|
||||
<refname>sqlite_fetch_all</refname>
|
||||
|
@ -74,8 +74,10 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an array of the current row from a result set; &false; if the
|
||||
current position is beyond the final row.
|
||||
Returns an array of the remaining rows in a result set. If called right
|
||||
after <function>sqlite_query</function>, it returns all rows. If called
|
||||
after <function>sqlite_fetch_array</function>, it returns the rest. If
|
||||
there are no rows in a result set, it returns an empty array.
|
||||
</para>
|
||||
&sqlite.case-fold;
|
||||
</refsect1>
|
||||
|
|
Loading…
Reference in a new issue