<?xml version="1.0" encoding="utf-8"?> <!-- $Revision$ --> <!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.2 --> <refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.pg-fetch-row"> <refnamediv> <refname>pg_fetch_row</refname> <refpurpose>Get a row as an enumerated array</refpurpose> </refnamediv> <refsect1 role="description"> &reftitle.description; <methodsynopsis> <type>array</type><methodname>pg_fetch_row</methodname> <methodparam><type>resource</type><parameter>result</parameter></methodparam> <methodparam choice="opt"><type>int</type><parameter>row</parameter></methodparam> <!-- Undocumented confusing feature: <methodparam choice="opt"><type>int</type><parameter>result_type</parameter></methodparam> --> </methodsynopsis> <para> <function>pg_fetch_row</function> fetches one row of data from the result associated with the specified <parameter>result</parameter> resource. </para> &database.fetch-null; </refsect1> <refsect1 role="parameters"> &reftitle.parameters; <para> <variablelist> <varlistentry> <term><parameter>result</parameter></term> <listitem> <para> PostgreSQL query result resource, returned by <function>pg_query</function>, <function>pg_query_params</function> or <function>pg_execute</function> (among others). </para> </listitem> </varlistentry> <varlistentry> <term><parameter>row</parameter></term> <listitem> <para> Row number in result to fetch. Rows are numbered from 0 upwards. If omitted or &null;, the next row is fetched. </para> </listitem> </varlistentry> </variablelist> </para> </refsect1> <refsect1 role="returnvalues"> &reftitle.returnvalues; <para> An <type>array</type>, indexed from 0 upwards, with each value represented as a <type>string</type>. Database <literal>NULL</literal> values are returned as &null;. </para> <para> &false; is returned if <parameter>row</parameter> exceeds the number of rows in the set, there are no more rows, or on any other error. </para> </refsect1> <refsect1 role="changelog"> &reftitle.changelog; <para> <informaltable> <tgroup cols="2"> <thead> <row> <entry>&Version;</entry> <entry>&Description;</entry> </row> </thead> <tbody> <row> <entry>4.1.0</entry> <entry> The parameter <parameter>row</parameter> became optional. </entry> </row> </tbody> </tgroup> </informaltable> </para> </refsect1> <refsect1 role="examples"> &reftitle.examples; <para> <example> <title><function>pg_fetch_row</function> example</title> <programlisting role="php"> <![CDATA[ <?php $conn = pg_pconnect("dbname=publisher"); if (!$conn) { echo "An error occured.\n"; exit; } $result = pg_query($conn, "SELECT author, email FROM authors"); if (!$result) { echo "An error occured.\n"; exit; } while ($row = pg_fetch_row($result)) { echo "Author: $row[0] E-mail: $row[1]"; echo "<br />\n"; } ?> ]]> </programlisting> </example> </para> </refsect1> <refsect1 role="seealso"> &reftitle.seealso; <para> <simplelist> <member><function>pg_query</function></member> <member><function>pg_fetch_array</function></member> <member><function>pg_fetch_object</function></member> <member><function>pg_fetch_result</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 -->