Provide stable target anchors for libpq functions.

Daniele Varrazzo
This commit is contained in:
Robert Haas 2010-08-09 12:00:39 +00:00
parent d720567f21
commit 6d8ae3fa08
2 changed files with 162 additions and 162 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
<!-- $PostgreSQL: pgsql/doc/src/sgml/lobj.sgml,v 1.53 2010/04/03 07:22:55 petere Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/lobj.sgml,v 1.53.2.1 2010/08/09 12:00:39 rhaas Exp $ -->
<chapter id="largeObjects">
<title>Large Objects</title>
@ -99,7 +99,7 @@
<application>libpq</application> library.
</para>
<sect2>
<sect2 id='lo-create'>
<title>Creating a Large Object</title>
<para>
@ -158,7 +158,7 @@ inv_oid = lo_create(conn, desired_oid);
</para>
</sect2>
<sect2>
<sect2 id="lo-import">
<title>Importing a Large Object</title>
<para>
@ -200,7 +200,7 @@ Oid lo_import_with_oid(PGconn *conn, const char *filename, Oid lobjId);
</para>
</sect2>
<sect2>
<sect2 id="lo-export">
<title>Exporting a Large Object</title>
<para>
@ -218,7 +218,7 @@ int lo_export(PGconn *conn, Oid lobjId, const char *filename);
</para>
</sect2>
<sect2>
<sect2 id="lo-open">
<title>Opening an Existing Large Object</title>
<para>
@ -268,7 +268,7 @@ inv_fd = lo_open(conn, inv_oid, INV_READ|INV_WRITE);
</para>
</sect2>
<sect2>
<sect2 id="lo-write">
<title>Writing Data to a Large Object</title>
<para>
@ -286,7 +286,7 @@ int lo_write(PGconn *conn, int fd, const char *buf, size_t len);
</para>
</sect2>
<sect2>
<sect2 id="lo-read">
<title>Reading Data from a Large Object</title>
<para>
@ -304,7 +304,7 @@ int lo_read(PGconn *conn, int fd, char *buf, size_t len);
</para>
</sect2>
<sect2>
<sect2 id="lo-seek">
<title>Seeking in a Large Object</title>
<para>
@ -324,7 +324,7 @@ int lo_lseek(PGconn *conn, int fd, int offset, int whence);
</para>
</sect2>
<sect2>
<sect2 id="lo-tell">
<title>Obtaining the Seek Position of a Large Object</title>
<para>
@ -338,7 +338,7 @@ int lo_tell(PGconn *conn, int fd);
</para>
</sect2>
<sect2>
<sect2 id="lo-truncate">
<title>Truncating a Large Object</title>
<para>
@ -370,7 +370,7 @@ int lo_truncate(PGcon *conn, int fd, size_t len);
</para>
</sect2>
<sect2>
<sect2 id="lo-close">
<title>Closing a Large Object Descriptor</title>
<para>
@ -390,7 +390,7 @@ int lo_close(PGconn *conn, int fd);
</para>
</sect2>
<sect2>
<sect2 id="lo-unlink">
<title>Removing a Large Object</title>
<para>