summaryrefslogtreecommitdiff
path: root/doc/src/sgml/lobj.sgml
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2010-08-09 12:00:39 +0000
committerRobert Haas <rhaas@postgresql.org>2010-08-09 12:00:39 +0000
commit6d8ae3fa081540fbae447e6250d02f152396eb8c (patch)
tree1df30178be88df7b3ddf427bf8c889f4ba4c2954 /doc/src/sgml/lobj.sgml
parentd720567f2112ecc4a572248a9dde3ca7a6c293a6 (diff)
Provide stable target anchors for libpq functions.
Daniele Varrazzo
Diffstat (limited to 'doc/src/sgml/lobj.sgml')
-rw-r--r--doc/src/sgml/lobj.sgml24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/src/sgml/lobj.sgml b/doc/src/sgml/lobj.sgml
index ea7d1c8dcec..32efd818413 100644
--- a/doc/src/sgml/lobj.sgml
+++ b/doc/src/sgml/lobj.sgml
@@ -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>