@@ -378,7 +378,7 @@ PostgresPollingStatusType PQconnectPoll(PGconn *conn);
378
378
<para>
379
379
At any time during connection, the status of the connection can be
380
380
checked by calling <xref linkend="libpq-PQstatus"/>. If this call returns <symbol>CONNECTION_BAD</symbol>, then the
381
- connection procedure has failed; if the call returns <function >CONNECTION_OK</function >, then the
381
+ connection procedure has failed; if the call returns <symbol >CONNECTION_OK</symbol >, then the
382
382
connection is ready. Both of these states are equally detectable
383
383
from the return value of <function>PQconnectPoll</function>, described above. Other states might also occur
384
384
during (and only during) an asynchronous connection procedure. These
@@ -1922,7 +1922,7 @@ postgresql://%2Fvar%2Flib%2Fpostgresql/dbname
1922
1922
<term><literal>sslkeylogfile</literal></term>
1923
1923
<listitem>
1924
1924
<para>
1925
- This parameter specifies the location where <literal >libpq</literal >
1925
+ This parameter specifies the location where <application >libpq</application >
1926
1926
will log keys used in this SSL context. This is useful for debugging
1927
1927
<productname>PostgreSQL</productname> protocol interactions or client
1928
1928
connections using network inspection tools like
@@ -1956,7 +1956,7 @@ postgresql://%2Fvar%2Flib%2Fpostgresql/dbname
1956
1956
<literal>Enter PEM pass phrase:</literal>
1957
1957
prompt that <productname>OpenSSL</productname> will emit by default
1958
1958
when an encrypted client certificate key is provided to
1959
- <literal >libpq</literal >.
1959
+ <application >libpq</application >.
1960
1960
</para>
1961
1961
<para>
1962
1962
If the key is not encrypted this parameter is ignored. The parameter
@@ -2811,14 +2811,14 @@ ConnStatusType PQstatus(const PGconn *conn);
2811
2811
<para>
2812
2812
The status can be one of a number of values. However, only two of
2813
2813
these are seen outside of an asynchronous connection procedure:
2814
- <literal >CONNECTION_OK</literal > and
2815
- <literal >CONNECTION_BAD</literal >. A good connection to the database
2816
- has the status <literal >CONNECTION_OK</literal >. A failed
2814
+ <symbol >CONNECTION_OK</symbol > and
2815
+ <symbol >CONNECTION_BAD</symbol >. A good connection to the database
2816
+ has the status <symbol >CONNECTION_OK</symbol >. A failed
2817
2817
connection attempt is signaled by status
2818
- <literal >CONNECTION_BAD</literal >. Ordinarily, an OK status will
2818
+ <symbol >CONNECTION_BAD</symbol >. Ordinarily, an OK status will
2819
2819
remain so until <xref linkend="libpq-PQfinish"/>, but a communications
2820
2820
failure might result in the status changing to
2821
- <literal >CONNECTION_BAD</literal > prematurely. In that case the
2821
+ <symbol >CONNECTION_BAD</symbol > prematurely. In that case the
2822
2822
application could try to recover by calling
2823
2823
<xref linkend="libpq-PQreset"/>.
2824
2824
</para>
@@ -6628,7 +6628,7 @@ PostgresPollingStatusType PQcancelPoll(PGcancelConn *cancelConn);
6628
6628
checked by calling <xref linkend="libpq-PQcancelStatus"/>.
6629
6629
If this call returns <symbol>CONNECTION_BAD</symbol>, then
6630
6630
the cancel procedure has failed; if the call returns
6631
- <function >CONNECTION_OK</function >, then cancel request was
6631
+ <symbol >CONNECTION_OK</symbol >, then cancel request was
6632
6632
successfully dispatched.
6633
6633
Both of these states are equally detectable from the return value of
6634
6634
<function>PQcancelPoll</function>, described above.
@@ -6750,15 +6750,15 @@ ConnStatusType PQcancelStatus(const PGcancelConn *cancelConn);
6750
6750
<para>
6751
6751
The status can be one of a number of values. However, only three of
6752
6752
these are seen outside of an asynchronous cancel procedure:
6753
- <literal >CONNECTION_ALLOCATED</literal >,
6754
- <literal >CONNECTION_OK</literal > and
6755
- <literal >CONNECTION_BAD</literal >. The initial state of a
6753
+ <symbol >CONNECTION_ALLOCATED</symbol >,
6754
+ <symbol >CONNECTION_OK</symbol > and
6755
+ <symbol >CONNECTION_BAD</symbol >. The initial state of a
6756
6756
<function>PGcancelConn</function> that's successfully created using
6757
- <xref linkend="libpq-PQcancelCreate"/> is <literal >CONNECTION_ALLOCATED</literal >.
6757
+ <xref linkend="libpq-PQcancelCreate"/> is <symbol >CONNECTION_ALLOCATED</symbol >.
6758
6758
A cancel request that was successfully dispatched
6759
- has the status <literal >CONNECTION_OK</literal >. A failed
6759
+ has the status <symbol >CONNECTION_OK</symbol >. A failed
6760
6760
cancel attempt is signaled by status
6761
- <literal >CONNECTION_BAD</literal >. An OK status will
6761
+ <symbol >CONNECTION_BAD</symbol >. An OK status will
6762
6762
remain so until <xref linkend="libpq-PQcancelFinish"/> or
6763
6763
<xref linkend="libpq-PQcancelReset"/> is called.
6764
6764
</para>
@@ -8283,7 +8283,7 @@ size_t PQresultMemorySize(const PGresult *res);
8283
8283
8284
8284
<listitem>
8285
8285
<para>
8286
- Return the version of <productname >libpq</productname > that is being used.
8286
+ Return the version of <application >libpq</application > that is being used.
8287
8287
<synopsis>
8288
8288
int PQlibVersion(void);
8289
8289
</synopsis>
@@ -8534,7 +8534,7 @@ typedef struct
8534
8534
<parameter>evtInfo</parameter> pointer should be cast to a
8535
8535
<structname>PGEventRegister *</structname>. This structure contains a
8536
8536
<structname>PGconn</structname> that should be in the
8537
- <literal >CONNECTION_OK</literal > status; guaranteed if one calls
8537
+ <symbol >CONNECTION_OK</symbol > status; guaranteed if one calls
8538
8538
<xref linkend="libpq-PQregisterEventProc"/> right after obtaining a good
8539
8539
<structname>PGconn</structname>. When returning a failure code, all
8540
8540
cleanup must be performed as no <literal>PGEVT_CONNDESTROY</literal>