摘要:
本系列的[上一篇](http://www.cnblogs.com/taylorblog/p/4633297.html)已经介绍了Android开源数据库框架LitePal如何引入到工程中并进行少量配置使其就绪。接下来将围绕我们平时对Sqlite的使用来介绍LitePal的具体用法。你会沉醉于它的简介... 阅读全文
posted @ 2015-07-14 13:15
Taylor & Code
阅读(686)
评论(0)
推荐(0)
LitePal 是一个开源的Android数据库框架,它让Android的数据库开发工作变得更简单,使用逻辑变得更清晰、简洁。通过LitePal可以完成几乎所有的Android Sqlite的功能。
LitePal is an Open Source Android library that allows developers to use SQLite database extremely easy. You can finish most of the database operations without writing even a SQL statement, including create or upgrade tables, crud operations, aggregate functions, etc. The setup of LitePal is quite simple as well, you c 阅读全文