文件名称:persist:dart 的数据库持久性内容
文件大小:9KB
文件格式:ZIP
更新时间:2024-06-29 16:44:54
Dart
dart 和 sqljocky 的一个非常基本的持久性东西。 定义一个Entity,创建一个EntityDao,创建、读取、更新和删除实体。 不管理人际关系或任何聪明的事情。
@Entity(table: "thing")
class Thing {
@Attribute(primaryKey: true)
String userId;
@Attribute()
String name;
@Attribute()
int age;
Thing(this.userId, this.name, this.age);
Thing.empty();
}
var pool = new ConnectionPool(...);
var dao = new EntityDao
【文件预览】:
persist-master
----pubspec.yaml(335B)
----lib()
--------src()
--------persist.dart(231B)
----LICENSE(551B)
----test()
--------annotations_test.dart(2KB)
--------queries_test.dart(784B)
--------entity_test.dart(8KB)
----README.md(753B)
----.gitignore(110B)