File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
- <Chapter Id="libpq">
2
- <Title><FileName>libpq</FileName></Title>
1
+ <Chapter Id="libpq-chapter ">
2
+ <Title id="libpq" ><FileName>libpq</FileName></Title>
3
3
4
4
<Para>
5
5
@@ -1614,7 +1614,6 @@ main()
1614
1614
exit_nicely(conn);
1615
1615
}
1616
1616
PQclear(res);
1617
-
1618
1617
res = PQexec(conn, "FETCH ALL in mycursor");
1619
1618
if (PQresultStatus(res) != PGRES_TUPLES_OK)
1620
1619
{
@@ -1636,7 +1635,6 @@ main()
1636
1635
printf("%-15s", PQgetvalue(res, i, j));
1637
1636
printf("\n");
1638
1637
}
1639
-
1640
1638
PQclear(res);
1641
1639
1642
1640
/* close the cursor */
Original file line number Diff line number Diff line change @@ -215,8 +215,8 @@ createdb: database creation failed on mydb.
215
215
<ItemizedList Mark="bullet" Spacing="compact">
216
216
<ListItem>
217
217
<Para>
218
- running the <ProductName>Postgres</ProductName> terminal monitor programs (e.g.
219
- <Application>psql</Application>) which allows you to interactively
218
+ running the <ProductName>Postgres</ProductName> terminal monitor programs
219
+ (e.g. <Application>psql</Application>) which allows you to interactively
220
220
enter, edit, and execute <Acronym>SQL</Acronym> commands.
221
221
</Para>
222
222
</ListItem>
@@ -226,12 +226,13 @@ running the <ProductName>Postgres</ProductName> terminal monitor programs (e
226
226
library. This allows you to submit <Acronym>SQL</Acronym> commands
227
227
from <Acronym>C</Acronym> and get answers and status messages back to
228
228
your program. This interface is discussed further
229
- in <XRef LinkEnd="PROGRAMMERS-GUIDE ">.
229
+ in <xref linkend="libpq" endterm="libpq ">.
230
230
</Para>
231
231
</ListItem>
232
232
</ItemizedList>
233
233
234
- You might want to start up <Application>psql</Application>, to try out the examples in this manual.
234
+ You might want to start up <Application>psql</Application>,
235
+ to try out the examples in this manual.
235
236
It can be activated for the <Database>mydb</Database>
236
237
database by typing the command:
237
238
<ProgramListing>
You can’t perform that action at this time.
0 commit comments