From: Bruce Momjian Date: Mon, 15 May 2000 12:42:23 +0000 (+0000) Subject: Add mention of lo_unlink to manual X-Git-Tag: REL7_0_2~92 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=5a72eadc98bffb444fb1776e8eb4ae3c5c78da0b;p=users%2Fhanada%2Fpostgres.git Add mention of lo_unlink to manual --- diff --git a/doc/src/sgml/lobj.sgml b/doc/src/sgml/lobj.sgml index e052e83c0c..9d9b9c80bd 100644 --- a/doc/src/sgml/lobj.sgml +++ b/doc/src/sgml/lobj.sgml @@ -1,5 +1,5 @@ @@ -238,6 +238,21 @@ int lo_close(PGconn *conn, int fd) returns zero. On error, the return value is negative. + + + Removing a Large Object + + + To remove a large object from the database, call + +Oid lo_unlink(PGconn *conn, Oid lobjId) + + The lobjId argument specifies the Oid of the large + object to remove. + + + +