diff options
author | Peter Eisentraut | 2001-03-21 19:09:03 +0000 |
---|---|---|
committer | Peter Eisentraut | 2001-03-21 19:09:03 +0000 |
commit | 6cf8707b828b14b5c2336076ce358b18b67829d6 (patch) | |
tree | e4ae1702632c64967867c846c7b24ca20e967bca | |
parent | ff3c4896a9d4b301bc73761c1e43e38093dc128a (diff) |
correction
-rw-r--r-- | doc/src/sgml/libpq.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 53455d7853f..003a4dd5c14 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -1,5 +1,5 @@ <!-- -$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"> @@ -239,14 +239,14 @@ PGconn *PQsetdb(char *pghost, <listitem> <para> - <function>PQconnectStart</function> + <function>PQconnectStart</function>, <function>PQconnectPoll</function> Make a connection to the database server in a non-blocking manner. <synopsis> PGconn *PQconnectStart(const char *conninfo) </synopsis> <synopsis> -PostgresPollingStatusType *PQconnectPoll(PQconn *conn) +PostgresPollingStatusType PQconnectPoll(PGconn *conn) </synopsis> 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 |