mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-26 13:58:55 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@297028 c90b9560-bf6c-de11-be94-00142212c4b1
98 lines
3 KiB
XML
98 lines
3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.ibase-fetch-assoc">
|
|
<refnamediv>
|
|
<refname>ibase_fetch_assoc</refname>
|
|
<refpurpose>Fetch a result row from a query as an associative array</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>ibase_fetch_assoc</methodname>
|
|
<methodparam><type>resource</type><parameter>result</parameter></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>fetch_flag</parameter><initializer>0</initializer></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Fetch a result row from a query as an associative array.
|
|
</para>
|
|
<para>
|
|
<function>ibase_fetch_assoc</function> fetches one row of data from the
|
|
<parameter>result</parameter>. If two or more columns of the result
|
|
have the same field names, the last column will take precedence. To
|
|
access the other column(s) of the same name, you either need to access
|
|
the result with numeric indices by using
|
|
<function>ibase_fetch_row</function> or use alias names in your query.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>result</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
The result handle.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>fetch_flag</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
<parameter>fetch_flag</parameter> is a combination of the constants
|
|
<constant>IBASE_TEXT</constant> and <constant>IBASE_UNIXTIME</constant>
|
|
ORed together. Passing <constant>IBASE_TEXT</constant> will cause this
|
|
function to return BLOB contents instead of BLOB ids. Passing
|
|
<constant>IBASE_UNIXTIME</constant> will cause this function to return
|
|
date/time values as Unix timestamps instead of as formatted strings.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Returns an associative array 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>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>ibase_fetch_row</function></member>
|
|
<member><function>ibase_fetch_object</function></member>
|
|
</simplelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|