]> granicus.if.org Git - postgresql/commitdiff
Remove obsolete remark that PQprepare() is more flexible than PREPARE.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 29 Aug 2010 15:19:26 +0000 (15:19 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 29 Aug 2010 15:19:26 +0000 (15:19 +0000)
Spotted by Dmitriy Igrishin.  Back-patch to 8.2, which is when the PREPARE
statement was improved to allow parameter types to be omitted.

doc/src/sgml/libpq.sgml

index d12e5113028e79b471425b979075647ee63cb2ee..20d7065ba31235e47efb92e7f33eb60446fa4a6a 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.255.2.2 2008/11/04 22:36:12 momjian Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.255.2.3 2010/08/29 15:19:26 tgl Exp $ -->
 
 <chapter id="libpq">
  <title><application>libpq</application> - C Library</title>
@@ -1523,9 +1523,8 @@ PGresult *PQprepare(PGconn *conn,
 
     Prepared statements for use with <function>PQexecPrepared</> can also
     be created by executing SQL <xref linkend="sql-prepare"
-    endterm="sql-prepare-title"> statements.  (But <function>PQprepare</>
-    is more flexible since it does not require parameter types to be
-    pre-specified.)  Also, although there is no <application>libpq</>
+    endterm="sql-prepare-title"> statements.
+    Also, although there is no <application>libpq</>
     function for deleting a prepared statement, the SQL <xref
     linkend="sql-deallocate" endterm="sql-deallocate-title"> statement
     can be used for that purpose.