summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1998-10-21 05:33:41 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1998-10-21 05:33:41 +0000
commit5e0ea5225f5a38d269142d840ecc3047290689ba (patch)
tree86205820578078925a0f8abf2edef674a3b58d55 /doc/src
parent8cf41db2996758b935f21f10edd2c2c2b076e3b7 (diff)
Minor fixes in markup.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/libpq.sgml6
-rw-r--r--doc/src/sgml/start.sgml9
2 files changed, 7 insertions, 8 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml
index 2291c88ae42..57097a1c5ad 100644
--- a/doc/src/sgml/libpq.sgml
+++ b/doc/src/sgml/libpq.sgml
@@ -1,5 +1,5 @@
-<Chapter Id="libpq">
-<Title><FileName>libpq</FileName></Title>
+<Chapter Id="libpq-chapter">
+<Title id="libpq"><FileName>libpq</FileName></Title>
<Para>
@@ -1614,7 +1614,6 @@ main()
exit_nicely(conn);
}
PQclear(res);
-
res = PQexec(conn, "FETCH ALL in mycursor");
if (PQresultStatus(res) != PGRES_TUPLES_OK)
{
@@ -1636,7 +1635,6 @@ main()
printf("%-15s", PQgetvalue(res, i, j));
printf("\n");
}
-
PQclear(res);
/* close the cursor */
diff --git a/doc/src/sgml/start.sgml b/doc/src/sgml/start.sgml
index 520823646b5..5861500984f 100644
--- a/doc/src/sgml/start.sgml
+++ b/doc/src/sgml/start.sgml
@@ -215,8 +215,8 @@ createdb: database creation failed on mydb.
<ItemizedList Mark="bullet" Spacing="compact">
<ListItem>
<Para>
-running the <ProductName>Postgres</ProductName> terminal monitor programs (e.g.
- <Application>psql</Application>) which allows you to interactively
+running the <ProductName>Postgres</ProductName> terminal monitor programs
+ (e.g. <Application>psql</Application>) which allows you to interactively
enter, edit, and execute <Acronym>SQL</Acronym> commands.
</Para>
</ListItem>
@@ -226,12 +226,13 @@ running the <ProductName>Postgres</ProductName> terminal monitor programs (e
library. This allows you to submit <Acronym>SQL</Acronym> commands
from <Acronym>C</Acronym> and get answers and status messages back to
your program. This interface is discussed further
- in <XRef LinkEnd="PROGRAMMERS-GUIDE">.
+ in <xref linkend="libpq" endterm="libpq">.
</Para>
</ListItem>
</ItemizedList>
-You might want to start up <Application>psql</Application>, to try out the examples in this manual.
+You might want to start up <Application>psql</Application>,
+to try out the examples in this manual.
It can be activated for the <Database>mydb</Database>
database by typing the command:
<ProgramListing>