orm 的 db 工具类,简化建表、查询、更新、插入、事务、索引的操作 1. greenDAO Android sqlite orm 的 db 工具类 项目地址:https://github.com/greenrobot/greenDAO 文档介绍:http://greendao-orm.com/documentation/ 官网网址:http://greendao-orm.com/ 特点:(1) 性能佳 (2) 简单易用的 API (3) 内存小好小 (4) 库大小小 ActiveAndroid Android sqlite orm 的 db 工具类 项目地址:https://github.com/pardom/ActiveAndroid 文档介绍:https://github.com/pardom/ActiveAndroid/wiki/_pages Sprinkles Android sqlite orm 的 db 工具类,比较显著的特点就是配合 https://github.com/square/retrofit 能保存从服务器获取的数据 项目地址:https://github.com/emilsjolander/sprinkles 文档介绍:http://emilsjolander.github.io/blog/2013/12/18/android-with-sprinkles/ Realm 移动端的数据库,适用于 Phone、Tablet、Wearable,支持 ORM,线程安全、支持连表及数据库加密,比 sqlite 性能更好 项目地址:https://github.com/realm/realm-java 文档介绍:http://realm.io/docs/java/0.72.0/ ormlite-android 项目地址:https://github.com/j256/ormlite-android 文档介绍:http://ormlite.com/sqlite_java_android_orm.shtml Schematic 根据 sqlite 生成 ContentProvider 项目地址:https://github.com/SimonVT/schematic DBFlow Android sqlite ORM 工具库。综合了 Active Android,Schematic,Ollie,Sprinkles 等库的优点;通过注解实现,性能好;能生成 ContentProvider。 项目地址:https://github.com/Raizlabs/DBFlow 文档介绍:https://github.com/Raizlabs/DBFlow#usage-docs 都可以试试,都很好,但好的不一定就适合你,有的简单实用,有的功能全面,有的效率更高,看你更注重哪方面了。原文链接:https://www.f2er.com/sqlite/198755.html