ReactiveDatabase class

Constructors

ReactiveDatabase.from(Database database, { bool logging: false })

Properties

logging → bool
final
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() → void
Close the database. Cannot be access anymore
delete(String table, { String where, List whereArgs }) → Future<int>
Convenience method for deleting rows in the database. [...]
insert(String table, Map<String, dynamic> values, { String nullColumnHack, ConflictAlgorithm conflictAlgorithm }) → Future<int>
Insert a row into a table, where the keys of values correspond to column names [...]
notifyTrigger(Set<String> tables) → void
query(String table, { bool distinct, List<String> columns, String where, List whereArgs, String groupBy, String having, String orderBy, int limit, int offset }) → Observable<List<Map>>
Helper to query a table [...]
update(String table, Map<String, dynamic> values, { String where, List whereArgs, ConflictAlgorithm conflictAlgorithm }) → Future<int>
Convenience method for updating rows in the database. [...]
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