Software: Apache/2.2.22 (Debian). PHP/5.6.36 uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) Safe-mode: OFF (not secure) /usr/share/doc/postgresql-doc-9.1/html/ drwxr-xr-x |
Viewing file: Select action/file-type:
32.3. Client Interfaces This section describes the facilities that
PostgreSQL client interface libraries
provide for accessing large objects. All large object
manipulation using these functions must take
place within an SQL transaction block.
The PostgreSQL large object interface is modeled after
the Unix file-system interface, with analogues of
Client applications which use the large object interface in libpq should include the header file libpq/libpq-fs.h and link with the libpq library. 32.3.1. Creating a Large ObjectThe function Oid lo_creat(PGconn *conn, int mode); creates a new large object. The return value is the OID that was assigned to the new large object, or InvalidOid (zero) on failure. mode is unused and ignored as of PostgreSQL 8.1; however, for backward compatibility with earlier releases it is best to set it to INV_READ, INV_WRITE, or INV_READ | INV_WRITE. (These symbolic constants are defined in the header file libpq/libpq-fs.h.) An example: inv_oid = lo_creat(conn, INV_READ|INV_WRITE);
The function Oid lo_create(PGconn *conn, Oid lobjId);
also creates a new large object. The OID to be assigned can be
specified by lobjId;
if so, failure occurs if that OID is already in use for some large
object. If lobjId
is InvalidOid (zero) then An example: inv_oid = lo_create(conn, desired_oid);
32.3.2. Importing a Large ObjectTo import an operating system file as a large object, call Oid lo_import(PGconn *conn, const char *filename); filename specifies the operating system name of the file to be imported as a large object. The return value is the OID that was assigned to the new large object, or InvalidOid (zero) on failure. Note that the file is read by the client interface library, not by the server; so it must exist in the client file system and be readable by the client application. The function Oid lo_import_with_oid(PGconn *conn, const char *filename, Oid lobjId);
also imports a new large object. The OID to be assigned can be
specified by lobjId;
if so, failure occurs if that OID is already in use for some large
object. If lobjId
is InvalidOid (zero) then 32.3.3. Exporting a Large ObjectTo export a large object into an operating system file, call int lo_export(PGconn *conn, Oid lobjId, const char *filename); The lobjId argument specifies the OID of the large object to export and the filename argument specifies the operating system name of the file. Note that the file is written by the client interface library, not by the server. Returns 1 on success, -1 on failure. 32.3.4. Opening an Existing Large ObjectTo open an existing large object for reading or writing, call int lo_open(PGconn *conn, Oid lobjId, int mode);
The lobjId argument specifies the OID of the large
object to open. The mode bits control whether the
object is opened for reading (INV_READ), writing
(INV_WRITE), or both.
(These symbolic constants are defined
in the header file libpq/libpq-fs.h.)
A large object cannot be opened before it is created.
The server currently does not distinguish between modes
INV_WRITE and INV_READ |
INV_WRITE: you are allowed to read from the descriptor
in either case. However there is a significant difference between
these modes and INV_READ alone: with INV_READ
you cannot write on the descriptor, and the data read from it will
reflect the contents of the large object at the time of the transaction
snapshot that was active when An example: inv_fd = lo_open(conn, inv_oid, INV_READ|INV_WRITE);
32.3.5. Writing Data to a Large ObjectThe function int lo_write(PGconn *conn, int fd, const char *buf, size_t len);
writes
len bytes from buf
to large object descriptor fd. The fd
argument must have been returned by a previous
32.3.6. Reading Data from a Large ObjectThe function int lo_read(PGconn *conn, int fd, char *buf, size_t len);
reads
len bytes from large object descriptor
fd into buf. The
fd argument must have been returned by a
previous 32.3.7. Seeking in a Large ObjectTo change the current read or write location associated with a large object descriptor, call int lo_lseek(PGconn *conn, int fd, int offset, int whence); This function moves the current location pointer for the large object descriptor identified by fd to the new location specified by offset. The valid values for whence are SEEK_SET (seek from object start), SEEK_CUR (seek from current position), and SEEK_END (seek from object end). The return value is the new location pointer, or -1 on error. 32.3.8. Obtaining the Seek Position of a Large ObjectTo obtain the current read or write location of a large object descriptor, call int lo_tell(PGconn *conn, int fd); If there is an error, the return value is negative. 32.3.9. Truncating a Large ObjectTo truncate a large object to a given length, call int lo_truncate(PGcon *conn, int fd, size_t len);
truncates the large object
descriptor fd to length len. The
fd argument must have been returned by a
previous The file offset is not changed. On success 32.3.10. Closing a Large Object DescriptorA large object descriptor can be closed by calling int lo_close(PGconn *conn, int fd);
where fd is a
large object descriptor returned by Any large object descriptors that remain open at the end of a transaction will be closed automatically. 32.3.11. Removing a Large ObjectTo remove a large object from the database, call int lo_unlink(PGconn *conn, Oid lobjId); The lobjId argument specifies the OID of the large object to remove. Returns 1 if successful, -1 on failure. |
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0397 ]-- |