Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cubrid_affected_rows(3) [php man page]

CUBRID_AFFECTED_ROWS(3) 						 1						   CUBRID_AFFECTED_ROWS(3)

cubrid_affected_rows - Return the number of rows affected by the last SQL statement

SYNOPSIS
int cubrid_affected_rows ([resource $conn_identifier]) DESCRIPTION
int cubrid_affected_rows ([resource $req_identifier]) The cubrid_affected_rows(3) function is used to get the number of rows affected by the SQL statement (INSERT, DELETE, UPDATE). PARAMETERS
o $conn_identifier -The CUBRID connection. If the connection identifier is not specified, the last link opend by cubrid_connect(3) is assumed. o $req_identifier - Request Identifier, could be returned from either cubrid_prepare(3) or cubrid_execute(3). If the request identifier is not spec- ified, the last identifier requested by cubrid_prepare(3) or cubrid_execute(3) is assumed. RETURN VALUES
Number of rows affected by the SQL statement, when process is successful. -1, when SQL statement is not INSERT, DELETE or UPDATE. FALSE, when the request identifier is not specified, and there is no last request. EXAMPLES
Example #1 cubrid_affected_rows(3) example <?php $conn = cubrid_connect('localhost', 33000, 'demodb', 'dba', ''); cubrid_execute($conn, "DROP TABLE IF EXISTS cubrid_test"); cubrid_execute($conn, "CREATE TABLE cubrid_test (d varchar)"); $sql_stmt = "INSERT INTO cubrid_test(d) VALUES('php-test')"; $req = cubrid_prepare($conn, $sql_stmt); for ($i = 0; $i < 10; $i++) { cubrid_execute($req); } cubrid_commit($conn); $req = cubrid_execute($conn, "DELETE FROM cubrid_test WHERE d='php-test'", CUBRID_ASYNC); var_dump(cubrid_affected_rows()); var_dump(cubrid_affected_rows($conn)); var_dump(cubrid_affected_rows($req)); cubrid_disconnect($conn); print "done!"; ?> The above example will output: Rows deleted: 5 SEE ALSO
cubrid_execute(3). PHP Documentation Group CUBRID_AFFECTED_ROWS(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