yohgaki         Thu Jan 24 05:02:52 2002 EDT

  Modified files:              
    /phpdoc/en/functions        pgsql.xml 
  Log:
  Fixed description. connection string is recommended parameter for pg_connect/
  pg_pconnect. To make a new connection, using a slightly different connection
  string is enough with connection string.
  
  
Index: phpdoc/en/functions/pgsql.xml
diff -u phpdoc/en/functions/pgsql.xml:1.66 phpdoc/en/functions/pgsql.xml:1.67
--- phpdoc/en/functions/pgsql.xml:1.66  Sun Jan 20 04:03:41 2002
+++ phpdoc/en/functions/pgsql.xml       Thu Jan 24 05:02:51 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.66 $ -->
+<!-- $Revision: 1.67 $ -->
  <reference id="ref.pgsql">
   <title>PostgreSQL functions</title>
   <titleabbrev>PostgreSQL</titleabbrev>
@@ -336,7 +336,7 @@
      new connection will be established, but instead, the connection
      resource of the already opened connection will be returned. You
      can have multiple connections to the same database if you use
-     different connection parameters. (i.e. Use different username)
+     different connection string.
     </para>
     <para>
      Syntax supports multiple parameters:
@@ -1530,7 +1530,7 @@
      <parameter>password</parameter>.
     </para>
      <example>
-     <title>Using pg_connect</title>
+     <title>Using pg_pconnect</title>
      <programlisting role="php">
 <![CDATA[
 <?php
@@ -1552,8 +1552,7 @@
      the same arguments, no new connection will be established, but
      instead, the connection resource of the already opened connection
      will be returned. You can have multiple connections to the same
-     database if you use different connection parameters. (i.e. Use
-     different username)
+     database if you use different connection string.
     </para>
     <para>
      Multiple parameters syntax for <function>pg_pconnect</function> 


Reply via email to