query method
Implementation
ResultSet query(String name, {List<Object> args = const []}) {
if (args.isEmpty) {
return lite.rawQuery("PRAGMA $name");
} else {
String s = args.map((e) => e is String ? e.singleQuoted : e.toString()).join(", ");
return lite.rawQuery("PRAGMA $name($s)");
}
}