Update manual. There will be more updates in a few days.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@79743 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Yasuo Ohgaki 2002-04-24 08:31:06 +00:00
parent d497826390
commit 066e687b05
5 changed files with 22 additions and 21 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.80 -->
<refentry id='function.pg-convert'>
<refnamediv>
@ -15,6 +15,7 @@
<methodparam><type>resource</type><parameter>connection</parameter></methodparam>
<methodparam><type>string</type><parameter>table_name</parameter></methodparam>
<methodparam><type>array</type><parameter>assoc_array</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>options</parameter></methodparam>
</methodsynopsis>
<para>
<function>pg_convert</function> check and convert <literal>assoc_array</literal> suitable for SQL statement.

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.80 -->
<refentry id='function.pg-delete'>
<refnamediv>
@ -15,14 +15,14 @@
<methodparam><type>resource</type><parameter>connection</parameter></methodparam>
<methodparam><type>string</type><parameter>table_name</parameter></methodparam>
<methodparam><type>array</type><parameter>assoc_array</parameter></methodparam>
<methodparam choice="opt"><type>bool</type><parameter>convert</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>options</parameter></methodparam>
</methodsynopsis>
<para>
<function>pg_delete</function> deletes record condition specified by
<literal>assoc_array</literal> which has
<literal>field=>value</literal>. If <literal>convert</literal> is
not specified or &true; <function>pg_convert</function> applied
to <literal>assoc_array</literal>.
<literal>field=>value</literal>. If <literal>option</literal> is
specified, <function>pg_convert</function> is applied
to <literal>assoc_array</literal> with specified option.
</para>
<example>
<title>pg_delete</title>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.80 -->
<refentry id='function.pg-insert'>
<refnamediv>
@ -15,15 +15,15 @@
<methodparam><type>resource</type><parameter>connection</parameter></methodparam>
<methodparam><type>string</type><parameter>table_name</parameter></methodparam>
<methodparam><type>array</type><parameter>assoc_array</parameter></methodparam>
<methodparam choice="opt"><type>bool</type><parameter>convert</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>options</parameter></methodparam>
</methodsynopsis>
<para>
<function>pg_insert</function> inserts
<literal>assoc_array</literal> which has
<literal>field=>value</literal> into table specified as
<literal>table_name</literal>. If <literal>convert</literal> is
not specified or &true; <function>pg_convert</function> applied
to <literal>assoc_array</literal>.
<literal>table_name</literal>. If <literal>options</literal> is
specified, <function>pg_convert</function> is applied
to <literal>assoc_array</literal> with specified option.
</para>
<example>
<title>pg_insert</title>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.80 -->
<refentry id='function.pg-select'>
<refnamediv>
@ -15,7 +15,7 @@
<methodparam><type>resource</type><parameter>connection</parameter></methodparam>
<methodparam><type>string</type><parameter>table_name</parameter></methodparam>
<methodparam><type>array</type><parameter>assoc_array</parameter></methodparam>
<methodparam choice="opt"><type>bool</type><parameter>convert</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>options</parameter></methodparam>
</methodsynopsis>
<para>
<function>pg_select</function> selects records specified by
@ -23,9 +23,9 @@
<literal>field=>value</literal>. For successful query, it returns
array contains all records and fields that match the condition
specified by <literal>assoc_array</literal>. If
<literal>convert</literal> is not specified or &true;
<function>pg_convert</function> applied to
<literal>assoc_array</literal>.
<literal>options</literal> is specified,
<function>pg_convert</function> s applied to
<literal>assoc_array</literal> with specified option.
</para>
<example>
<title>pg_select</title>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.80 -->
<refentry id='function.pg-update'>
<refnamediv>
@ -16,14 +16,14 @@
<methodparam><type>string</type><parameter>table_name</parameter></methodparam>
<methodparam><type>array</type><parameter>condition</parameter></methodparam>
<methodparam><type>array</type><parameter>data</parameter></methodparam>
<methodparam choice="opt"><type>bool</type><parameter>convert</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>options</parameter></methodparam>
</methodsynopsis>
<para>
<function>pg_update</function> updates records that matches
<literal>condition</literal> with <literal>data</literal> If
<literal>convert</literal> is not specified or &true;
<function>pg_convert</function> applied to
<literal>assoc_array</literal>.
<literal>options</literal> is specified,
<function>pg_convert</function> is applied to
<literal>assoc_array</literal> with specified options.
</para>
<example>
<title>pg_update</title>