CommonPreparedStatement class abstract

A prepared statement.

Implementers

Properties

hashCode int
The hash code for this object.
no setterinherited
parameterCount int
Returns the amount of parameters in this prepared statement.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sql String
The SQL statement backing this prepared statement.
no setter

Methods

dispose() → void
Disposes this statement and releases associated memory.
execute([List<Object?> parameters = const <Object>[]]) → void
Executes this statement, ignoring result rows if there are any.
executeMap(Map<String, Object?> parameters) → void
Executes this statement, ignoring result rows if there are any.
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.
selectCursor([List<Object?> parameters = const <Object>[]]) IteratingCursor
Starts selecting rows by running this prepared statement with the given parameters.
selectMap(Map<String, Object?> parameters) ResultSet
Selects all rows into a ResultSet.
toString() String
A string representation of this object.
inherited

Operators

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