all

abstract fun all(vararg args: Any?): List<SQLiteObject>

All Results

Execute the underlying statement against the owning SQLiteDatabase; then, build a List of all results, with each structured as a map-like SQLiteObject.

If no results are found, an empty list is returned; if the underlying database has closed, an error is thrown.

Repeated calls to this method with unchanging args will cache the underlying rendered query, but will not cache the result-set.

Return

List of matching SQLiteObject instances.

Parameters

args

Arguments to render into the query; if a map is provided as the first and only argument, it is used as a suite of named arguments.