Required Instance Propertygrdb 7.1.0GRDB
_isDone
Must be initialized to false.
var _isDone: Bool { get set }
Must be initialized to false.
var _isDone: Bool { get set }
import GRDB
A toolkit for SQLite databases, with a focus on application development
protocol DatabaseCursor<Element> : Cursor
A cursor that lazily iterates the results of a prepared Statement
.
@frozen struct Bool
A value type whose instances are either true
or false
.
var _statement: Statement { get }
The statement iterated by the cursor
func _element(sqliteStatement: SQLiteStatement) throws -> Element
Called after one successful call to sqlite3_step()
. Returns the element for the current statement step.