IDatabaseOperation class abstract

Implementers

Constructors

IDatabaseOperation()

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

delete(String tableName, int id) Future<bool>
insert(String tableName, Map<String, dynamic> args) Future<int>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
query({required String from, List<String> select = const [], List where = const [], String orderBy = "", int offset = 0, bool count = false, int limit = 50}) Future<List>
read(String tableName, int id, [List<String> columns = const []]) Future<Map<String, dynamic>?>
toString() String
A string representation of this object.
inherited
update(String tableName, int id, Map<String, dynamic> args) Future<bool>

Operators

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