TinyBase logoTinyBase

Result methods

This is the collection of result methods within the Queries interface. There are 11 result methods in total.

getResultTable

The getResultTable method returns an object containing the entire data of the ResultTable of the given query.

getResultTableCellIds

The getResultTableCellIds method returns the Ids of every ResultCell used across the ResultTable of the given query.

hasResultTable

The hasResultTable method returns a boolean indicating whether a given ResultTable exists.

getResultRowIds

The getResultRowIds method returns the Ids of every ResultRow in the ResultTable of the given query.

getResultSortedRowIds

The getResultSortedRowIds method returns the Ids of every ResultRow in the ResultTable of the given query, sorted according to the values in a specified ResultCell.

getResultRow

The getResultRow method returns an object containing the entire data of a single ResultRow in the ResultTable of the given query.

getResultRowCount

The getResultRowCount method returns the count of the ResultRow objects in the ResultTable of the given query.

hasResultRow

The hasResultRow method returns a boolean indicating whether a given ResultRow exists.

getResultCellIds

The getResultCellIds method returns the Ids of every ResultCell in a given ResultRow, in the ResultTable of the given query.

getResultCell

The getResultCell method returns the value of a single ResultCell in a given ResultRow, in the ResultTable of the given query.

hasResultCell

The hasResultCell method returns a boolean indicating whether a given ResultCell exists.