spec_meta_get_row_count
Value
dbGetRowCount()
returns a scalar number (integer or numeric),
the number of rows fetched so far.
After calling DBI::dbSendQuery()
,
the row count is initially zero.
After a call to DBI::dbFetch()
without limit,
the row count matches the total number of rows returned.
Fetching a limited number of rows
increases the number of rows by the number of rows returned,
even if fetching past the end of the result set.
For queries with an empty result set,
zero is returned
even after fetching.
For data manipulation statements issued with
DBI::dbSendStatement()
,
zero is returned before
and after calling dbFetch()
.
Failure modes
Attempting to get the row count for a result set cleared with
DBI::dbClearResult()
gives an error.
See also
Other meta specifications:
spec_get_info
,
spec_meta_bind
,
spec_meta_column_info
,
spec_meta_get_rows_affected
,
spec_meta_get_statement
,
spec_meta_has_completed
,
spec_meta_is_valid