-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsql.dart
47 lines (38 loc) · 1.17 KB
/
sql.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import './db_provider.dart';
import '../model/base.dart';
class Sql extends BaseModel {
final String tableName;
Sql.setTable(this.tableName) : super(DbProvider.db);
// sdf
Future<List> get() async {
return await this.query(tableName);
}
Future<List> getBySql(String where, List<dynamic> whereArgs,
{String orderBy, int limit, int offset}) async {
return await this.query(tableName,
where: where,
whereArgs: whereArgs,
orderBy: orderBy,
limit: limit,
offset: offset);
}
Future<int> rawUpdate(String sql, [List<dynamic> arguments]) async {
return await this.db.rawUpdate('UPDATE $tableName SET $sql', arguments);
}
Future<int> rawInsert(String valueNames, [List<dynamic> arguments]) async {
return await this
.db
.rawInsert('INSERT INTO $tableName$valueNames', arguments);
}
Future<int> rawDelete(String wheres, [List<dynamic> arguments]) async {
return await this
.db
.rawDelete('DELETE FROM $tableName WHERE $wheres', arguments);
}
String getTableName() {
return tableName;
}
Future<int> deleteAll() async {
return await this.db.delete(tableName);
}
}