NAME
Cassandra::Client::ResultSet - container for rows returned from a query
METHODS
- $result->rows()
-
Returns an arrayref of all rows in the ResultSet. Each row will be represented as an arrayref with cells. To find column names, see
column_names
. - $result->column_names()
-
Returns an arrayref with the names of the columns in the result set, to be used with rows returned from
rows()
. - $result->next_page()
-
Returns a string pointing to the next Cassandra result page, if any. Used internally by
$client->each_page()
, but can be used to implement custom pagination logic.