Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cubrid_lob2_export(3) [php man page]

CUBRID_LOB2_EXPORT(3)							 1						     CUBRID_LOB2_EXPORT(3)

cubrid_lob2_export - Export the lob object to a file.

SYNOPSIS
bool cubrid_lob2_export (resource $lob_identifier, string $file_name) DESCRIPTION
The cubrid_lob2_export(3) function is used to save the contents of BLOB/CLOB data to 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 store 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 // Table: test_lob (id INT, contents CLOB) $conn = cubrid_connect("localhost", 33000, "demodb", "dba", ""); cubrid_execute($conn,"DROP TABLE if exists doc"); cubrid_execute($conn,"CREATE TABLE doc (id INT, doc_content CLOB)"); cubrid_execute($conn,"INSERT INTO doc VALUES (5,'hello,cubrid')"); $req = cubrid_prepare($conn, "select * from doc"); cubrid_execute($req); cubrid_move_cursor($req, 1, CUBRID_CURSOR_FIRST); $row = cubrid_fetch($req, CUBRID_NUM | CUBRID_LOB); cubrid_lob2_export($row[1], "doc_3.txt"); cubrid_lob2_close($row[1]); cubrid_disconnect($conn); ?> SEE ALSO
cubrid_lob2_new(3), cubrid_lob2_close(3), cubrid_lob2_import(3), cubrid_lob2_bind(3). PHP Documentation Group CUBRID_LOB2_EXPORT(3)

Check Out this Related Man Page

CUBRID_LOB2_READ(3)							 1						       CUBRID_LOB2_READ(3)

cubrid_lob2_read - Read from BLOB/CLOB data.

SYNOPSIS
string cubrid_lob2_read (resource $lob_identifier, int $len) DESCRIPTION
The cubrid_lob2_read(3) function reads $len bytes from the LOB data and returns the bytes read. PARAMETERS
o $lob_identifier -Lob identifier as a result of cubrid_lob2_new(3) or get from the result set. o $len -Length from buffer you want to read from the lob data. RETURN VALUES
Returns the contents as a string. FALSE when there is no more data. NULL on failure. EXAMPLES
Example #1 cubrid_lob2_read(3) example 1 <?php // test_lob (id INT, contents CLOB) $conn = cubrid_connect("localhost", 33000, "demodb", "public", ""); $req = cubrid_execute($conn, "select * from test_lob"); $row = cubrid_fetch_row($req, CUBRID_LOB); print "position now is " . cubrid_lob2_tell($row[1]) . " "; cubrid_lob2_seek($row[1], 10, CUBRID_CURSOR_FIRST); print " position after moving farword is " . cubrid_lob2_tell($row[1]) . " "; $data = cubrid_lob2_read($row[1], 12); print " position after reading is " . cubrid_lob2_tell($row[1]) . " "; print $data . " "; cubrid_lob2_seek($row[1], 5, CUBRID_CURSOR_CURRENT); print " position after moving again is " . cubrid_lob2_tell($row[1]) . " "; $data = cubrid_lob2_read($row[1], 20); print $data . " "; cubrid_disconnect($conn); ?> Example #2 cubrid_lob2_read(3) example 2 <?php // test_lob (id INT, contents CLOB) $conn = cubrid_connect("localhost", 33000, "demodb", "dba", ""); $req = cubrid_execute($conn, "select * from test_lob"); $row = cubrid_fetch_row($req, CUBRID_LOB); while (true) { if ($data = cubrid_lob2_read($row[1], 1024)) { print $data . " "; } elseif ($data === false) { print "There is no more data "; break; } else { print "There must some errors "; break; } } cubrid_disconnect($conn); ?> SEE ALSO
cubrid_lob2_write(3), cubrid_lob2_seek(3), cubrid_lob2_seek64(3), cubrid_lob2_tell(3), cubrid_lob2_tell64(3), cubrid_lob2_size(3), cubrid_lob2_size64(3). PHP Documentation Group CUBRID_LOB2_READ(3)
Man Page