From 6d8ae3fa081540fbae447e6250d02f152396eb8c Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Mon, 9 Aug 2010 12:00:39 +0000 Subject: Provide stable target anchors for libpq functions. Daniele Varrazzo --- doc/src/sgml/lobj.sgml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'doc/src/sgml/lobj.sgml') 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 @@ - + Large Objects @@ -99,7 +99,7 @@ libpq library. - + Creating a Large Object @@ -158,7 +158,7 @@ inv_oid = lo_create(conn, desired_oid); - + Importing a Large Object @@ -200,7 +200,7 @@ Oid lo_import_with_oid(PGconn *conn, const char *filename, Oid lobjId); - + Exporting a Large Object @@ -218,7 +218,7 @@ int lo_export(PGconn *conn, Oid lobjId, const char *filename); - + Opening an Existing Large Object @@ -268,7 +268,7 @@ inv_fd = lo_open(conn, inv_oid, INV_READ|INV_WRITE); - + Writing Data to a Large Object @@ -286,7 +286,7 @@ int lo_write(PGconn *conn, int fd, const char *buf, size_t len); - + Reading Data from a Large Object @@ -304,7 +304,7 @@ int lo_read(PGconn *conn, int fd, char *buf, size_t len); - + Seeking in a Large Object @@ -324,7 +324,7 @@ int lo_lseek(PGconn *conn, int fd, int offset, int whence); - + Obtaining the Seek Position of a Large Object @@ -338,7 +338,7 @@ int lo_tell(PGconn *conn, int fd); - + Truncating a Large Object @@ -370,7 +370,7 @@ int lo_truncate(PGcon *conn, int fd, size_t len); - + Closing a Large Object Descriptor @@ -390,7 +390,7 @@ int lo_close(PGconn *conn, int fd); - + Removing a Large Object -- cgit v1.2.3