diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-04-30 04:26:01 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-04-30 04:26:01 +0000 |
commit | 9a878b4ec736c86b986f667ffe1edc456f793ac3 (patch) | |
tree | f15abe0b8e319ad56acb1182bfc989f419d64be9 /doc/src | |
parent | 189a752ef9e15adf41b292a5c5b994f8ee9acd65 (diff) | |
download | postgresql-9a878b4ec736c86b986f667ffe1edc456f793ac3.tar.gz postgresql-9a878b4ec736c86b986f667ffe1edc456f793ac3.zip |
Add mention of libpgtcl's options to manual, libpq++ markup fixes.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/libpgtcl.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/libpq++.sgml | 10 |
2 files changed, 8 insertions, 4 deletions
diff --git a/doc/src/sgml/libpgtcl.sgml b/doc/src/sgml/libpgtcl.sgml index 37344ba0e9d..c57766cd423 100644 --- a/doc/src/sgml/libpgtcl.sgml +++ b/doc/src/sgml/libpgtcl.sgml @@ -188,6 +188,8 @@ pg_connect <REPLACEABLE CLASS="PARAMETER">dbName</REPLACEABLE> <OPTIONAL>-host < </TERM> <LISTITEM> <PARA>A string of connection options, each written in the form keyword = value. +A list of valid options can be found in <filename>libpq</>'s +<function>PQconnectdb()</> manual entry. </PARA> </LISTITEM> </VARLISTENTRY> diff --git a/doc/src/sgml/libpq++.sgml b/doc/src/sgml/libpq++.sgml index 38a02104aa8..06ab5238a8a 100644 --- a/doc/src/sgml/libpq++.sgml +++ b/doc/src/sgml/libpq++.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.24 2001/01/20 20:59:28 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.25 2001/04/30 04:26:01 momjian Exp $ --> <chapter id="libpqplusplus"> @@ -65,13 +65,15 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.24 2001/01/20 20:59: <para> The following environment variables can be used to select default - connection parameter values, which will be used by PQconnectdb or - PQsetdbLogin if no value is directly specified by the calling code. + connection parameter values, which will be used by + <function>PQconnectdb</> or + <function>PQsetdbLogin</> if no value is directly specified by the calling code. These are useful to avoid hard-coding database names into simple application programs. <note> <para> - <filename>libpq++</filename> uses only environment variables or PQconnectdb + <filename>libpq++</filename> uses only environment variables or + <filename>libpq</>'s <function>PQconnectdb</> conninfo style strings. </para> </note> |