Instance Propertygrdb 7.4.0GRDB
arguments
The statement arguments.
var arguments: StatementArguments { get }
The statement arguments.
var arguments: StatementArguments { get }
s4GRDB14DatabaseCursorPAAE9argumentsAA18StatementArgumentsVvp
What are these?8AXAO
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
.
struct StatementArguments
An instance of StatementArguments
provides the values for argument placeholders in a prepared Statement
.
var columnCount: Int { get }
The number of columns in the resulting rows.
var columnNames: [String] { get }
The column names, ordered from left to right.
var databaseRegion: DatabaseRegion { get }
The database region that the cursor looks into.
var sql: String { get }
The SQL query.
func forEach(_ body: (Element) throws -> Void) throws
func next() throws -> Element?