cubrid_num_rows
(PECL CUBRID >= 8.3.0)
cubrid_num_rows — Get the number of rows in the result set
説明
The cubrid_num_rows() function is used to get the
number of rows from the query result.
It can be used for SELECT
statements.
For INSERT
, UPDATE
, or DELETE
queries,
use the cubrid_affected_rows() function.
Note: The cubrid_num_rows() function can only be used for synchronous query; it returns 0 when it is used for asynchronous query.
戻り値
Number 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.
例
例1 cubrid_num_rows() 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\nColumn Num: %d\n", $row_num, $col_num);
cubrid_disconnect($conn);
?>
上の例の出力は以下となります。
Row Num: 6 Column Num: 2
参考
- cubrid_execute() - Execute a prepared SQL statement
- cubrid_num_cols() - Return the number of columns in the result set
- cubrid_affected_rows() - Return the number of rows affected by the last SQL statement
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google