Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cubrid_prepare(3) [php man page]

CUBRID_PREPARE(3)							 1							 CUBRID_PREPARE(3)

cubrid_prepare - Prepare a SQL statement for execution

SYNOPSIS
resource cubrid_prepare (resource $conn_identifier, string $prepare_stmt, [int $option]) DESCRIPTION
The cubrid_prepare(3) function is a sort of API which represents SQL statements compiled previously to a given connection handle. This pre-compiled SQL statement will be included in the cubrid_prepare(3). Accordingly, you can use this statement effectively to execute several times repeatedly or to process long data. Only a single statement can be used and a parameter may put a question mark (?) to appropriate area in the SQL statement. Add a parameter when you bind a value in the VALUES clause of INSERT statement or in the WHERE clause. Note that it is allowed to bind a value to a MARK(?) by using the cubrid_bind(3) function only. PARAMETERS
o $conn_identifier -Connection identifier. o $prepare_stmt -Prepare query. o $option -OID return option CUBRID_INCLUDE_OID. RETURN VALUES
Request identifier, if process is successful; FALSE, if process is unsuccessful. EXAMPLES
Example #1 cubrid_prepare(3) example <?php $conn = cubrid_connect("localhost", 33000, "demodb"); $sql = <<<EOD SELECT g.event_code, e.name FROM game g JOIN event e ON g.event_code=e.code WHERE host_year = ? AND event_code NOT IN (SELECT event_code FROM game WHERE host_year=?) GROUP BY event_code; EOD; $req = cubrid_prepare($conn, $sql); cubrid_bind($req, 1, 2004); cubrid_bind($req, 2, 2000); cubrid_execute($req); $row_num = cubrid_num_rows($req); printf("There are %d event that exits in 2004 olympic but not in 2000. For example: ", $row_num); printf("%-15s %s ", "Event_code", "Event_name"); printf("---------------------------- "); $row = cubrid_fetch_assoc($req); printf("%-15d %s ", $row["event_code"], $row["name"]); $row = cubrid_fetch_assoc($req); printf("%-15d %s ", $row["event_code"], $row["name"]); cubrid_disconnect($conn); ?> The above example will output: There are 27 event that exits in 2004 olympic but not in 2000. For example: Event_code Event_name ---------------------------- 20063 +91kg 20070 64kg SEE ALSO
cubrid_execute(3), cubrid_bind(3). PHP Documentation Group CUBRID_PREPARE(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