Required Instance Propertygrdb 7.1.0GRDB
_statement
The statement iterated by the cursor
var _statement: Statement { get }
The statement iterated by the cursor
var _statement: Statement { get }
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
.
final class Statement
A prepared statement.
var _isDone: Bool { get set }
Must be initialized to false.
func _element(sqliteStatement: SQLiteStatement) throws -> Element
Called after one successful call to sqlite3_step()
. Returns the element for the current statement step.