CustomStatementParameter class abstract interface

A parameter passed to prepared statements that decides how it gets mapped to SQL in applyTo.

Implementing and using this class is rarely useful, as this package supports standard types supported by sqlite3 directly. For advanced APIs, such as the pointer-passing interface that can't directly be represented in a high-level Dart interface, this class can be used to manually bind a value.

Constructors

CustomStatementParameter()

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

applyTo(CommonPreparedStatement statement, int index) → void
Applies this custom parameter to the statement at the variable index index.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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