Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

fbsql_read_clob(3) [php man page]

FBSQL_READ_CLOB(3)							 1							FBSQL_READ_CLOB(3)

fbsql_read_clob - Read a CLOB from the database

SYNOPSIS
string fbsql_read_clob (string $clob_handle, [resource $link_identifier]) DESCRIPTION
Reads CLOB data from the database. If a select statement contains BLOB and/or CLOB columns FrontBase will return the data directly when data is fetched. This default behav- ior can be changed with fbsql_set_lob_mode(3) so the fetch functions will return handles to BLOB and CLOB data. If a handle is fetched a user must call fbsql_read_clob(3) to get the actual CLOB data from the database. PARAMETERS
o $clob_handle - A CLOB handle, returned by fbsql_create_clob(3). o $ link_identifier -A FrontBase link identifier returned by fbsql_connect(3) or fbsql_pconnect(3).If optional and not specified, the function will try to find an open link to the FrontBase server and if no such link is found it will try to create one as if fbsql_connect(3) was called with no arguments. RETURN VALUES
Returns a string containing the specified CLOB data. EXAMPLES
Example #1 fbsql_read_clob(3) example <?php $link = fbsql_pconnect("localhost", "_SYSTEM", "secret") or die("Could not connect"); $sql = "SELECT CLOB_COLUMN FROM CLOB_TABLE;"; $rs = fbsql_query($sql, $link); $row_data = fbsql_fetch_row($rs); // $row_data[0] will now contain the clob data for the first row fbsql_free_result($rs); $rs = fbsql_query($sql, $link); fbsql_set_lob_mode($rs, FBSQL_LOB_HANDLE); $row_data = fbsql_fetch_row($rs); // $row_data[0] will now contain a handle to the CLOB data in the first row $clob_data = fbsql_read_clob($row_data[0]); fbsql_free_result($rs); ?> SEE ALSO
fbsql_create_clob(3), fbsql_read_blob(3), fbsql_set_lob_mode(3). PHP Documentation Group FBSQL_READ_CLOB(3)

Check Out this Related Man Page

CUBRID_LOB2_BIND(3)							 1						       CUBRID_LOB2_BIND(3)

cubrid_lob2_bind - Bind a lob object or a string as a lob object to a prepared statement as parameters.

SYNOPSIS
bool cubrid_lob2_bind (resource $req_identifier, int $bind_index, mixed $bind_value, [string $bind_value_type]) DESCRIPTION
The cubrid_lob2_bind(3) function is used to bind BLOB/CLOB datas to a corresponding question mark placeholder in the SQL statement that was passed to cubrid_prepare(3). If $bind_value_type is not given, string will be "BLOB" as the default. But if you use cubrid_lob2_new(3) before, $bind_value_type will be consistent with $type in cubrid_lob2_new(3) as the default. PARAMETERS
o $req_identifier -Request identifier as a result of cubrid_prepare(3). o $bind_index -Location of binding parameters. It starts with 1. o $bind_value -Actual value for binding. o $bind_value_type -It must be "BLOB" or "CLOB" and it won't be case-sensitive. If it not be given, the default value is "BLOB". RETURN VALUES
TRUE, when process is successful. FALSE, when process is unsuccessful. EXAMPLES
Example #1 cubrid_lob2_bind(3) example <?php // Table: test_lob (id INT, contents CLOB) $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, 3); $lob = cubrid_lob2_new($conn, 'CLOB'); cubrid_lob2_bind($req, 2, $lob); cubrid_execute($req); cubrid_bind($req, 1, 4); cubrid_lob2_bind($req, 2, 'CUBRID LOB2 TEST', 'CLOB'); cubrid_execute($req); cubrid_disconnect($conn); ?> SEE ALSO
cubrid_lob2_new(3), cubrid_lob2_close(3). PHP Documentation Group CUBRID_LOB2_BIND(3)
Man Page