> For the complete documentation index, see [llms.txt](https://cherrycake.tin.cat/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cherrycake.tin.cat/version-0.x/reference/core-classes/databaseresult/databaseresult-methods.md).

# DatabaseResult methods

## countRows

**Returns:** The number of rows in the results of the query.

## freeResult

Frees the memory associated to the results of the query. This causes results to no longer be available.

## getRow

Returns the current row in the results of the query, and advances to the next row.

**Returns:** A [DatabaseRow](/version-0.x/reference/core-classes/databaserow.md) object, or false i no more rows are available.

## isAny

**Returns:** True if there were any results, false if not.

## reset

Sets the row pointer to the beginning of the results, so the next retrieved row will be the first.
