PreparedStatement class
Dart api wrapping an underlying prepared statement object from the sql.js library.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
columnNames(
) → List< String> - The columns returned by this statement. This will only be available after step has been called once.
-
currentRow(
[bool useBigInt = false]) → List - Reads the current from the underlying js api
-
executeWith(
List args) → void -
Executes this statement with the bound
args
. -
free(
) → void -
Calls
free
on the underlying js api -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
step(
) → bool -
Performs
step
on the underlying js api -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited