ActiveAndroid Android 轻量级 ORM 框架
最近在寻找下 Android 开发中好用的 ORM 框架,发现了 ActiveAndroid 和 ORMLite , 相信懂 Rails 开发的一直都对 ActiveRecord 情有独钟,使用起来真是太方便了。ActiveAndroid 听名字就知道就模仿 ActiveRecord 的一套框架,于是果断学习下。
介绍
ActiveAndroid 算是一个轻量级的 ORM 框架,简单地通过如 save()
和 delete()
等方法来做到增删改查等操作。配置起来也还算简单。
下面是作者的原话:
ActiveAndroid is an active record style ORM (object relational mapper). What does that mean exactly? Well, ActiveAndroid allows you to save and retrieve SQLite database records without ever writing a single SQL statement. Each database record is wrapped neatly into a class with methods like save() and delete().
ActiveAndroid does so much more than this though. Accessing the database is a hassle, to say the least, in Android. ActiveAndroid takes care of all the setup and messy stuff, and all with just a few simple steps of configuration.
配置
在 AndroidManifest.xml 中我们需要添加这两个
- AA_DB_NAME (这个 name 不能改,但是是可选的,如果不写的话 是默认的
Application.db
这个值) - AA_DB_VERSION (optional – defaults to 1)
<manifest ...>
<application android:name="com.activeandroid.app.Application" ...>
...
<meta-data android:name="AA_DB_NAME" android:value="your.db" />
<meta-data android:name="AA_DB_VERSION" android:value="5" />
</application>
</manifest>
这个 application 是必须指定的,但你也可以使用自己的 Application,继承自 com.activeandroid.app.Application
public class MyApplication extends com.activeandroid.app.Application {
...
}
如果你不想或者不能继承 com.activeandroid.app.Application
的话,那么就这样
public class MyApplication extends SomeLibraryApplication {
@Override
public void onCreate() {
super.onCreate();
ActiveAndroid.initialize(this);
}
@Override
public void onTerminate() {
super.onTerminate();
ActiveAndroid.dispose();
}
}
ActiveAndroid.initialize(this);
做初始化工作, ActiveAndroid.dispose();
做清理工作
创建数据库模型
我们使用 @Table(name = "Items")
来表示表,使用 @Column(name = "Name")
来表示列,ActiveAndroid 会使用自增长的 ID 作为主键,然后按照注解描述,将类对应映射为数据库表。
@Table(name = "Items")
public class Item extends Model {
@Column(name = "Name")
public String name;
@Column(name = "Category")
public Category category;
public Item(){
super();
}
public Item(String name, Category category){
super();
this.name = name;
this.category = category;
}
}
依赖关系的数据库表
假如 Item 和 Category 是多对一的关系,那么我们可以这样子创建他们的类
@Table(name = "Items")
public class Item extends Model {
@Column(name = "Name")
public String name;
@Column(name = "Category")
public Category category;
}
@Table(name = "Categories")
public class Category extends Model {
@Column(name = "Name")
public String name;
public List<Item> items() {
return getMany(Item.class, "Category");
}
}
保存和更新数据到数据库
单条插入
保存 Category 对象
Category restaurants = new Category();
restaurants.name = "Restaurants";
restaurants.save();
分配了一个 category 并且保存到数据库
Item item = new Item();
item.category = restaurants;
item.name = "Outback Steakhouse";
item.save();
批量插入
如果你要批量插入数据,最好使用事务(transaction)。
ActiveAndroid.beginTransaction();
try {
for (int i = 0; i < 100; i++) {
Item item = new Item();
item.name = "Example " + i;
item.save();
}
ActiveAndroid.setTransactionSuccessful();
}
finally {
ActiveAndroid.endTransaction();
}
使用事务的话只用了 40ms,不然的话需要 4 秒。
删除记录
我们有三种方式删除一条记录
Item item = Item.load(Item.class, 1);
item.delete();
Item.delete(Item.class, 1);
new Delete().from(Item.class).where("Id = ?", 1).execute();
很简单吧
查询数据库
作者将查询做的非常像 SQLite 的原生查询语句,几乎涵盖了所有的指令 com.activeandroid.query
包下有以下类
- Delete
- From
- Join
- Select
- Set
- Update
我们举例说明吧
public static Item getRandom(Category category) {
return new Select()
.from(Item.class)
.where("Category = ?", category.getId())
.orderBy("RANDOM()")
.executeSingle();
}
对应的 sqlite 查询语句就是 select * from Item where Category = ? order by RANDOM()
, 当然还支持其他非常多的指令
- limit
- offset
- as
- desc/asc
- inner/outer/cross join
- group by
- having 等等
数据库升级
如果想给现有的表增加或删除 column,这个时候只需要把 sql 脚本放在 /assets/migrations
文件夹下,然后需要:
- 增加数据库版本,即增加配置文件下的 application 种的 AA_DB_VERSION
- 在
/assets/migrations
文件夹下提供一个NewVersion.sql
脚本
ActiveAndroid 将会自动执行大于 database-version
的 sql 脚本文件
假设需要给 Items 表增加一个 colour
列,那么需要把 AA_DB_VERSION
增加到 2
,并且在 /assets/migrations
目录下提供一个 2.sql
的脚本文件,内容如下
ALTER TABLE Items ADD COLUMN Color INTEGER;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论