SqliteConnection class
Methods
-
close()
→ void
-
-
delete(String table, String whereClause, List whereArgs)
→ Future<int>
-
-
execute(String sql)
→ Future<void>
-
-
insert(String table, Map<String, dynamic> values)
→ Future<int>
-
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
open()
→ void
-
-
query(String sql, [List params = const []])
→ Future<List<Map<String, dynamic>>>
-
-
toString()
→ String
-
A string representation of this object.
inherited
-
update(String table, Map<String, dynamic> values, String whereClause, List whereArgs)
→ Future<int>
-