android数据库--sugar

非常实用的数据库第三方依赖

项目地址:https://github.com/chennaione/sugar  

亲测非常实用。

一些注意事项:

1,数据库配置

android:name="DATABASE"
android:value="sugar_example.db" />
android:name="VERSION"
android:value="2" />
android:name="QUERY_LOG"
android:value="true" />

2,必须重新他的application (SugarApp )

public class MyAPP extends SugarApp {
@Override
public void onCreate() {
super.onCreate();

}
}


其他数据库:

https://github.com/LitePalFramework/LitePal

https://github.com/greenrobot/greenDAO

https://github.com/realm/realm-java

你可能感兴趣的:(Android)