StorageProvider class

Implemented by

Constructors

StorageProvider(Config config)

Properties

config Config
read / write
constraints → String
read-only
db → Future<Database>
read-only
fieldsStringSchema → String
read-only
schema → dynamic
read-only
selectColumns → List<String>
read-only
stringSchema → String
read-only
tableName → String
read-only
hashCode → int
The hash code for this object. [...]
read-only, inherited
runtimeType → Type
A representation of the runtime type of the object.
read-only, inherited

Methods

close() → Future
createTable() → Future
delete({String where, List whereArgs }) → Future<int>
get({String where, List whereArgs }) → Future<StorageOperator>
getById(int id) → Future<StorageOperator>
getByIdRaw(int id) → Future<Map>
getList({bool distinct, List<String> columns, String where, List whereArgs, String groupBy, String having, String orderBy, int limit, int offset }) → Future<List<StorageOperator>>
getOperatorClassFromMap(Map map) → dynamic
getRaw({String where, List whereArgs }) → Future<Map>
getRawList({bool distinct, List<String> columns, String where, List whereArgs, String groupBy, String having, String orderBy, int limit, int offset }) → Future<List<Map>>
insert(StorageOperator operator) → Future<StorageOperator>
insertAll(List<StorageOperator> operators) → Future<List<StorageOperator>>
open({Function onOpen }) → Future
update(StorageOperator operator, String where, List whereArgs) → Future<int>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
toString() → String
Returns a string representation of this object.
inherited

Operators

operator ==(dynamic other) → bool
The equality operator. [...]
inherited