Database class
Methods
-
delete(String table, String key)
→ Future<Exception?>
-
-
deleteAll(String table)
→ Future<Exception?>
-
-
find(String table, String key)
→ Future<Map<String, dynamic>?>
-
-
findAll(String table)
→ Future<List<Map<String, dynamic>>>
-
-
initialize(String? path)
→ dynamic
-
-
insert(String table, String key, Map<String, dynamic> map, {bool logExceptions = true})
→ Future<Exception?>
-
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
query(String table, {String? where, String? orderby})
→ Future<List<Map<String, dynamic>>>
-
-
toString()
→ String
-
A string representation of this object.
inherited
-
update(String table, String key, Map<String, dynamic> map)
→ Future<Exception?>
-
-
upsert(String table, String key, Map<String, dynamic> map)
→ Future<Exception?>
-