PHP » GoLang |
login |
register |
about
|
GoLang cubrid_num_rows
request it (377)
GoLang replacement for PHP's cubrid_num_rows
[edit | history]
cubrid_num_rows(PECL CUBRID >= 8.3.0) cubrid_num_rows — Get the number of rows in the result set Description
int cubrid_num_rows
( resource
$result
)The cubrid_num_rows() 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() function. Note: The cubrid_num_rows() function can only be used for synchronous query; it returns 0 when it is used for asynchronous query. Return ValuesNumber of rows, when process is successful. 0 when the query was done in async mode. -1, if SQL statement is not SELECT.
ExamplesExample #1 cubrid_num_rows() example
<?php The above example will output: Row Num: 6 Column Num: 2 See Also
|
more
Recently updated
more
Most requested
more
Last requests
|