abies Mon Sep 1 20:05:00 2003 EDT
Modified files:
/phpdoc/en/reference/ibase/functions ibase-fetch-assoc.xml
ibase-fetch-object.xml
ibase-fetch-row.xml
Log:
Explain fetch_flag
Index: phpdoc/en/reference/ibase/functions/ibase-fetch-assoc.xml
diff -u phpdoc/en/reference/ibase/functions/ibase-fetch-assoc.xml:1.1
phpdoc/en/reference/ibase/functions/ibase-fetch-assoc.xml:1.2
--- phpdoc/en/reference/ibase/functions/ibase-fetch-assoc.xml:1.1 Sat May 10
18:54:24 2003
+++ phpdoc/en/reference/ibase/functions/ibase-fetch-assoc.xml Mon Sep 1 20:05:00
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<refentry id="function.ibase-fetch-assoc">
<refnamediv>
<refname>ibase_fetch_assoc</refname>
@@ -12,11 +12,11 @@
<methodsynopsis>
<type>array</type><methodname>ibase_fetch_assoc</methodname>
<methodparam><type>resource</type><parameter>result</parameter></methodparam>
- <methodparam
choice="opt"><type>int</type><parameter>blob_flag</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>fetch_flag</parameter></methodparam>
</methodsynopsis>
<para>
<function>ibase_fetch_assoc</function> returns an associative array
- that corresponds to the fetched row. Subsequent calls would return
+ that corresponds to the fetched row. Subsequent calls will return
the next row in the result set, or &false; if there are no more
rows.
</para>
@@ -29,9 +29,14 @@
<function>ibase_fetch_row</function> or use alias names in your query.
</para>
<para>
+ <parameter>fetch_flag</parameter> is a combination of the constants IBASE_TEXT
and IBASE_UNIXTIME
+ ORed together. Passing IBASE_TEXT will cause this function to return BLOB contents
+ instead of BLOB ids. Passing IBASE_UNIXTIME will cause this function to return
+ date/time values as UNIX timestamps instead of as formatted strings.
+ </para>
+ <para>
See also
- <function>ibase_query</function>,
- <function>ibase_fetch_row</function>, and
+ <function>ibase_fetch_row</function> and
<function>ibase_fetch_object</function>.
</para>
</refsect1>
Index: phpdoc/en/reference/ibase/functions/ibase-fetch-object.xml
diff -u phpdoc/en/reference/ibase/functions/ibase-fetch-object.xml:1.3
phpdoc/en/reference/ibase/functions/ibase-fetch-object.xml:1.4
--- phpdoc/en/reference/ibase/functions/ibase-fetch-object.xml:1.3 Sun Jul 27
18:21:30 2003
+++ phpdoc/en/reference/ibase/functions/ibase-fetch-object.xml Mon Sep 1 20:05:00
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/ibase.xml, last change in rev 1.9 -->
<refentry id="function.ibase-fetch-object">
<refnamediv>
@@ -11,7 +11,7 @@
<methodsynopsis>
<type>object</type><methodname>ibase_fetch_object</methodname>
<methodparam><type>resource</type><parameter>result_id</parameter></methodparam>
- <methodparam
choice="opt"><type>int</type><parameter>blob_flag</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>fetch_flag</parameter></methodparam>
</methodsynopsis>
<para>
Fetches a row as a pseudo-object from a
@@ -38,6 +38,12 @@
Subsequent call to <function>ibase_fetch_object</function> would
return the next row in the result set, or &false; if there are no
more rows.
+ </para>
+ <para>
+ <parameter>fetch_flag</parameter> is a combination of the constants IBASE_TEXT
and IBASE_UNIXTIME
+ ORed together. Passing IBASE_TEXT will cause this function to return BLOB contents
+ instead of BLOB ids. Passing IBASE_UNIXTIME will cause this function to return
+ date/time values as UNIX timestamps instead of as formatted strings.
</para>
<para>
See also
Index: phpdoc/en/reference/ibase/functions/ibase-fetch-row.xml
diff -u phpdoc/en/reference/ibase/functions/ibase-fetch-row.xml:1.3
phpdoc/en/reference/ibase/functions/ibase-fetch-row.xml:1.4
--- phpdoc/en/reference/ibase/functions/ibase-fetch-row.xml:1.3 Sun Jul 27 18:21:30
2003
+++ phpdoc/en/reference/ibase/functions/ibase-fetch-row.xml Mon Sep 1 20:05:00
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/ibase.xml, last change in rev 1.2 -->
<refentry id="function.ibase-fetch-row">
<refnamediv>
@@ -11,7 +11,7 @@
<methodsynopsis>
<type>array</type><methodname>ibase_fetch_row</methodname>
<methodparam><type>resource</type><parameter>result_identifier</parameter></methodparam>
- <methodparam
choice="opt"><type>int</type><parameter>blob_flag</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>fetch_flag</parameter></methodparam>
</methodsynopsis>
<para>
Returns an array that corresponds to the fetched row, or &false;
@@ -25,14 +25,20 @@
starting at offset 0.
</para>
<para>
- Subsequent call to <function>ibase_fetch_row</function> would
+ Subsequent calls to <function>ibase_fetch_row</function> will
return the next row in the result set, or &false; if there are no
more rows.
</para>
<para>
+ <parameter>fetch_flag</parameter> is a combination of the constants IBASE_TEXT
and IBASE_UNIXTIME
+ ORed together. Passing IBASE_TEXT will cause this function to return BLOB contents
+ instead of BLOB ids. Passing IBASE_UNIXTIME will cause this function to return
+ date/time values as UNIX timestamps instead of as formatted strings.
+ </para>
+ <para>
See also
<function>ibase_fetch_assoc</function> and
- <function>ibase_fetch_row</function>.
+ <function>ibase_fetch_object</function>.
</para>
</refsect1>
</refentry>