downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

cubrid_client_encoding> <CUBRID MySQL Compatibility Functions
[edit] Last updated: Fri, 26 Apr 2013

view this page in

cubrid_affected_rows

(PECL CUBRID >= 8.3.0)

cubrid_affected_rowsReturn the number of rows affected by the last SQL statement

Description

int cubrid_affected_rows ([ resource $conn_identifier ] )

The cubrid_affected_rows() function is used to get the number of rows affected by the SQL statement (INSERT, DELETE, UPDATE).

Parameters

conn_identifier

The CUBRID connection. If the connection identifier is not specified, the last link opend by cubrid_connect() 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() example

<?php
$conn 
cubrid_connect("localhost"33000"demodb");

@
cubrid_execute($conn"DROP TABLE cubrid_test");
cubrid_execute($conn"CREATE TABLE cubrid_test (t varchar)");

for (
$i 0$i 5$i++) {
    
cubrid_execute($conn"INSERT INTO cubrid_test(t) VALUES('cubrid_test')");
}

cubrid_execute($conn"DELETE FROM cubrid_test");

$affected_num cubrid_affected_rows();
printf("Rows deleted: %d\n"$affected_num);

cubrid_disconnect($conn);
?>

The above example will output:

Rows deleted: 5

See Also



add a note add a note User Contributed Notes cubrid_affected_rows - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites