Query: pg_lo_import
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
PG_LO_IMPORT(3) PG_LO_IMPORT(3) pg_lo_import - Import a large object from fileSYNOPSISint pg_lo_import ([resource $connection], string $pathname, [mixed $object_id])DESCRIPTIONpg_lo_import(3) creates a new large object in the database using a file on the filesystem as its data source. To use the large object interface, it is necessary to enclose it within a transaction block. Note When safe mode is enabled, PHP checks whether the files or directories being operated upon have the same UID (owner) as the script that is being executed. Note This function used to be called pg_loimport(3).PARAMETERSo $connection - PostgreSQL database connection resource. When $connection is not present, the default connection is used. The default connection is the last connection made by pg_connect(3) or pg_pconnect(3). o $pathname - The full path and file name of the file on the client filesystem from which to read the large object data. o $object_id - If an $object_id is given the function will try to create a large object with this id, else a free object id is assigned by the server. The parameter was added in PHP 5.3 and relies on functionality that first appeared in PostgreSQL 8.1.RETURN VALUESThe $OID of the newly created large object, or FALSE on failure.CHANGELOG+--------+-------------------------------------+ |Version | | | | | | | Description | | | | +--------+-------------------------------------+ | 5.3.0 | | | | | | | The optional $object_id was added. | | | | +--------+-------------------------------------+EXAMPLESExample #1 pg_lo_import(3) example <?php $database = pg_connect("dbname=jacarta"); pg_query($database, "begin"); $oid = pg_lo_import($database, '/tmp/lob.dat'); pg_query($database, "commit"); ?>SEE ALSOpg_lo_export(3), pg_lo_open(3). PHP Documentation Group PG_LO_IMPORT(3)
Related Man Pages |
---|
pg_last_notice(3) - php |
pg_connect(3) - php |
pg_escape_string(3) - php |
pg_pconnect(3) - php |
pg_fetch_object(3) - php |
Similar Topics in the Unix Linux Community |
---|
Editing a large size file |
input variable like POST in PHP possibly? |
XOOPS: Release 2.30 Final |
XOOPS: 2.3.3 RC release |
[PHP] asking how to make plain text database searching system |