Commit 6cf8707b authored by Peter Eisentraut's avatar Peter Eisentraut

correction

parent ff3c4896
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.58 2001/03/04 18:54:07 petere Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.59 2001/03/21 19:09:03 petere Exp $
--> -->
<chapter id="libpq"> <chapter id="libpq">
...@@ -239,14 +239,14 @@ PGconn *PQsetdb(char *pghost, ...@@ -239,14 +239,14 @@ PGconn *PQsetdb(char *pghost,
<listitem> <listitem>
<para> <para>
<function>PQconnectStart</function> <function>PQconnectStart</function>,
<function>PQconnectPoll</function> <function>PQconnectPoll</function>
Make a connection to the database server in a non-blocking manner. Make a connection to the database server in a non-blocking manner.
<synopsis> <synopsis>
PGconn *PQconnectStart(const char *conninfo) PGconn *PQconnectStart(const char *conninfo)
</synopsis> </synopsis>
<synopsis> <synopsis>
PostgresPollingStatusType *PQconnectPoll(PQconn *conn) PostgresPollingStatusType PQconnectPoll(PGconn *conn)
</synopsis> </synopsis>
These two routines are used to open a connection to a database server such These two routines are used to open a connection to a database server such
that your application's thread of execution is not blocked on remote I/O that your application's thread of execution is not blocked on remote I/O
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment