Query: cubrid_num_rows
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CUBRID_NUM_ROWS(3) 1 CUBRID_NUM_ROWS(3) cubrid_num_rows - Get the number of rows in the result setSYNOPSISint cubrid_num_rows (resource $result)DESCRIPTIONThe cubrid_num_rows(3) function is used to get the number of rows from the query result. You can use it only when the query executed is a select statement. When you want to know such value for INSERT, UPDATE, or DELETE query, you have to use the cubrid_affected_rows(3) func- tion. Note: The cubrid_num_rows(3) function can only be used for synchronous query; it returns 0 when it is used for asynchronous query.PARAMETERSo $result -$result comes from a call to cubrid_execute(3), cubrid_query(3) and cubrid_prepare(3)RETURN VALUESNumber of rows, when process is successful. 0 when the query was done in async mode. -1, if SQL statement is not SELECT. FALSE when process is unsuccessful.EXAMPLESExample #1 cubrid_num_rows(3) example <?php $conn = cubrid_connect("localhost", 33000, "demodb", "dba"); $req = cubrid_execute($conn, "SELECT * FROM code"); $row_num = cubrid_num_rows($req); $col_num = cubrid_num_cols($req); printf("Row Num: %d Column Num: %d ", $row_num, $col_num); cubrid_disconnect($conn); ?> The above example will output: Row Num: 6 Column Num: 2SEE ALSOcubrid_execute(3), cubrid_num_cols(3), cubrid_affected_rows(3). PHP Documentation Group CUBRID_NUM_ROWS(3)
Related Man Pages |
---|
cubrid_prepare(3) - php |
cubrid_lob2_write(3) - php |
cubrid_field_flags(3) - php |
cubrid_insert_id(3) - php |
cubrid_lock_write(3) - php |
Similar Topics in the Unix Linux Community |
---|
If statement not working |
Need to retain particular rows |
grep 7th column from a file seperated with ^ |
Filter Row Based On Max Column Value After Group BY |
Ls followed by grep |