Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cubrid_lob2_bind(3) [php 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)

Check Out this Related Man Page

CUBRID_LOCK_WRITE(3)							 1						      CUBRID_LOCK_WRITE(3)

cubrid_lock_write - Set a write lock on the given OID

SYNOPSIS
bool cubrid_lock_write (resource $conn_identifier, string $oid) DESCRIPTION
The cubrid_lock_write(3) function is used to put write lock on the instance pointed by the given $oid. PARAMETERS
o $conn_identifier -Connection identifier. o $oid -OID of the instance that you want to put write lock on. RETURN VALUES
TRUE, when process is successful. FALSE, when process is unsuccessful. EXAMPLES
Example #1 cubrid_lock_write(3) example <?php $conn = cubrid_connect("localhost", 33000, "demodb", "dba"); @cubrid_execute($conn, "DROP TABLE foo"); cubrid_execute($conn, "CREATE TABLE foo(a int AUTO_INCREMENT, b set(int), c list(int), d char(10))"); cubrid_execute($conn, "INSERT INTO foo(a, b, c, d) VALUES(1, {1,2,3}, {11,22,33,333}, 'a')"); cubrid_execute($conn, "INSERT INTO foo(a, b, c, d) VALUES(2, {4,5,7}, {44,55,66,666}, 'b')"); $req = cubrid_execute($conn, "SELECT * FROM foo", CUBRID_INCLUDE_OID); cubrid_move_cursor($req, 1, CUBRID_CURSOR_FIRST); $oid = cubrid_current_oid($req); cubrid_lock_write($conn, $oid); $attr = cubrid_col_get($conn, $oid, "b"); var_dump($attr); cubrid_put($conn, $oid, "b", array(2, 4, 8)); $attr = cubrid_col_get($conn, $oid, "b"); var_dump($attr); cubrid_close_request($req); cubrid_disconnect($conn); ?> The above example will output: array(3) { [0]=> string(1) "1" [1]=> string(1) "2" [2]=> string(1) "3" } array(3) { [0]=> string(1) "2" [1]=> string(1) "4" [2]=> string(1) "8" } SEE ALSO
cubrid_lock_read(3). PHP Documentation Group CUBRID_LOCK_WRITE(3)
Man Page