cubrid_lob2_import(3) php man page | unix.com

Man Page: cubrid_lob2_import

Operating Environment: php

Section: 3

CUBRID_LOB2_IMPORT(3)							 1						     CUBRID_LOB2_IMPORT(3)

cubrid_lob2_import - Import BLOB/CLOB data from a file.

SYNOPSIS
bool cubrid_lob2_import (resource $lob_identifier, string $file_name)
DESCRIPTION
The cubrid_lob2_import(3) function is used to save the contents of BLOB/CLOB data from a file. To use this function, you must use cubrid_lob2_new(3) or fetch a lob object from CUBRID database first. If the file already exists, the operation will fail. This function will not influence the cursor position of the lob object. It operates the entire lob object.
PARAMETERS
o $lob_identifier -Lob identifier as a result of cubrid_lob2_new(3) or get from the result set. o $filename -File name you want to import BLOB/CLOB data. It also supports the path of the file.
RETURN VALUES
TRUE if the process is successful and FALSE for failure.
EXAMPLES
Example #1 cubrid_lob2_export(3) example <?php $conn = cubrid_connect("localhost", 33000, "demodb", "dba", ""); cubrid_execute($conn,"DROP TABLE if exists test_lob"); cubrid_execute($conn,"CREATE TABLE test_lob (id INT, contents CLOB)"); $req = cubrid_prepare($conn, "INSERT INTO test_lob VALUES (?, ?)"); cubrid_bind($req, 1, 1); $lob = cubrid_lob2_new($conn, "clob"); cubrid_lob2_import($lob, "doc_1.txt"); cubrid_lob2_bind($req, 2, $lob, 'CLOB'); // or cubrid_lob2_bind($req, 2, $lob); cubrid_execute($req); cubrid_lob2_close($lob); cubrid_disconnect($conn); ?>
SEE ALSO
cubrid_lob2_new(3), cubrid_lob2_close(3), cubrid_lob2_export(3), cubrid_lob2_bind(3). PHP Documentation Group CUBRID_LOB2_IMPORT(3)
Related Man Pages
cubrid_lob2_export(3) - php
cubrid_lock_read(3) - php
cubrid_lob2_bind(3) - php
cubrid_lob2_seek64(3) - php
cubrid_lock_write(3) - php
Similar Topics in the Unix Linux Community
script for reading BLOB data
Creating CLOB object in unix
Unix commands Related to
ORA-01756 Error while inserting a file in CLOB field
Ls followed by grep