PreparedStatement class abstract

A prepared statement.

Implemented types

Constructors

PreparedStatement()

Properties

handle Pointer<void>
The underlying sqlite3_stmt pointer.
no setter
hashCode int
The hash code for this object.
no setterinherited
parameterCount int
Returns the amount of parameters in this prepared statement.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sql String
The SQL statement backing this prepared statement.
no setterinherited

Methods

dispose() → void
Disposes this statement and releases associated memory.
inherited
execute([List<Object?> parameters = const <Object>[]]) → void
Executes this statement, ignoring result rows if there are any.
inherited
executeMap(Map<String, Object?> parameters) → void
Executes this statement, ignoring result rows if there are any.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
select([List<Object?> parameters = const <Object>[]]) ResultSet
Selects all rows into a ResultSet.
inherited
selectCursor([List<Object?> parameters = const <Object>[]]) IteratingCursor
Starts selecting rows by running this prepared statement with the given parameters.
inherited
selectMap(Map<String, Object?> parameters) ResultSet
Selects all rows into a ResultSet.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited