BatchedStatements class Null safety
Stores information needed to run batched statements in the order they were issued without preparing statements multiple times.
Constructors
-
BatchedStatements(List<
String> statements, List<ArgumentsForBatchedStatement> arguments) - Creates a collection of batched statements by splitting the sql and the bound arguments.
Properties
-
arguments
→ List<
ArgumentsForBatchedStatement> -
Stores which sql statement should be run with what arguments.
final
- hashCode → int
-
The hash code for this object. [...]
read-only, override
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
-
statements
→ List<
String> -
All sql statements that need to be prepared. [...]
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
A string representation of this object. [...]
override
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
override