1. 程式人生 > >LitePal 資料庫使用方法(最新2.0LitePal資料庫適用)

LitePal 資料庫使用方法(最新2.0LitePal資料庫適用)

轉發郭神的blog,講的非常詳細,是基於1.6版本,但現在使用的是2.0,有點差別
https://blog.csdn.net/guolin_blog/article/details/38461239
1.首先說一下常用檢視資料庫adb命令
手機root後 adb shell ->cd data/data/
ls 展示列表 cd進入應用 cd databases進入資料庫
sqlite3 demo.db注意選擇有.db檔案
.table 展示資料庫表格
.mode line 列表形式展示資料
pragma table_info(表名); 注意要有分號 查看錶格列資訊
select * from 表名; 檢視新增內容
ctrl+d 退出sqlite

2.配置
(1)在app module dependencies匯入

implementation 'org.litepal.android:java:3.0.0'

 

(2)在src->main->assets 新增litepal.xml。一定要新建檔案+寫副檔名的形式,不要直接新建xml
在這裡插入圖片描述

<?xml version="1.0" encoding="utf-8" ?>
<litepal>
    <dbname value="demo" ></dbname>

    <version value="6" ></version>

    <list>
        <mapping class="com.tayh.litepaldemo.News"></mapping>
        <mapping class="com.tayh.litepaldemo.Comment"></mapping>
        <mapping class="com.tayh.litepaldemo.Introduction"></mapping>
        <mapping class="com.tayh.litepaldemo.Category"></mapping>
    </list>
</litepal>

(3)MyApplication 可以直接繼承Application ,初始化LitePal就可以了

public class MyApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        LitePal.initialize(this);
    }
}

(4)Activity 呼叫資料庫語句

 SQLiteDatabase db = Connector.getDatabase();

 

(5)News 與Introduction 一對一 外來鍵news_id生成在Introduction裡,News本身並沒有key,這個需要理解一下。News與Category 多對多,生成key在新生成的category_news表中

public class News extends LitePalSupport {
    private int id;
    private String title;
    private String content;
    private Date publishDate;
    private int commentCount;

    private Introduction introduction;//一對一 外來鍵生成在Introduction表裡

    private List<Comment> commentList = new ArrayList<Comment>();//一對多

    private List<Category> categoryList = new ArrayList<Category>();//多對多

}
public class Introduction extends LitePalSupport {
    private int id;
    private String guide;
    private String digest;
}
public class Comment extends LitePalSupport {
    private int id;
    private String content;
    private Date publishDate;
    private News news;//多對一

}
public class Category extends LitePalSupport {
    private int id;
    private String name;
    private List<News> newsList = new ArrayList<News>();//多對多
}

在這裡插入圖片描述
3.增刪改查CRUD
(1)儲存
* save()方法用於資料儲存,返回值為是否儲存成功
saveThrows() 儲存失敗丟擲異常
news.getId() 可以獲取到儲存id

		Comment comment1 = new Comment();
        comment1.setContent("comment1");
        comment1.setPublishDate(new Date());
        comment1.save();
        News news = new News();
        news.setTitle("news1");
        news.setContent("content1");
        news.setPublishDate(new Date());
        news.getCommentList().add(comment1);
        news.setCommentCount(news.getCommentList().size());
        news.save();

在這裡插入圖片描述
*也可儲存集合

List<News> newsList;
...
 LitePal.saveAll(newsList);

(2)更新
有兩種方式:
方式一:使用ContentValue

 ContentValues values = new ContentValues();
        values.put("title","test1");//title 列名
        LitePal.update(News.class,values,1);//1 是更新列的id
        //LitePal.update(News.class,values);//更新所有

條件更新:

 ContentValues values = new ContentValues();
        values.put("title","test2");       
        LitePal.updateAll(News.class, values, "title = ? and commentcount > ?", "test1", "0");

方法二:資料直接更新

  News updateNews = new News();
        updateNews.setTitle("test0");
        updateNews.update(1);//id

條件更新:

        News updateNews = new News();
        updateNews.setTitle("test1");
        updateNews.updateAll("title = ? and commentcount > ?", "test0", "0");

注意:如果要恢復預設值使用setToDefault ,set 0無效

 News updateNews = new News();
        updateNews.setToDefault("commentCount");//commentCount列恢復預設值
        updateNews.updateAll();

(3)刪除
刪除資料的同時,會把該列id作為外來鍵的關聯表的資料一起刪除

 int deleteCount = LitePal.delete(News.class, 1);//id 1
  // LitePal.deleteAll(News.class, "title = ? and commentcount = ?", "test1", "0");

判斷持久化方法,即是否存到資料庫

if (news.isSaved()) {
	news.delete();
}

(4)查詢
*查詢第一個或最後一個

News firstNews = LitePal.findFirst(News.class);       
News lastNews = LitePal.findLast(News.class);

*按照多個id查詢

 List<News> newsList = LitePal.findAll(News.class, 0, 2);
//方法二
long[] ids = new long[] { 0, 1};
List<News> newsList2 = LitePal.findAll(News.class, ids);

*按照條件查詢

 //查詢news表,條件為commentcount >0 ,只要 title content列的資料 ,降序 ,limit(10) 前10條 ,offset(10)偏移量10 即11-20條資料
        List<News> newsList3 = LitePal.select("title", "content")
                .where("commentcount > ?", "0")
                .order("publishdate desc").limit(10).offset(10)
                .find(News.class);

激進查詢
方法一:設定為true,查出news關聯表的資料,不推薦,比較慢

 News news = LitePal.find(News.class, 1, true);
        List<Comment> commentList = news.getCommentList();

方法二:News表增加getComments()方法。然後需要時再獲取list


public class News extends LitePalSupport{
	
	... 
	public List<Comment> getComments() {
        return LitePal.where("news_id = ?", String.valueOf(id)).find(Comment.class);
    }	
	}

News news2 = LitePal.find(News.class, 1);
        List<Comment> commentList2 = news2.getComments();

 

*原生查詢

 Cursor cursor = LitePal.findBySQL("select * from news where commentcount>?", "0");
  • 1

4.聚合函式
LitePal中一共提供了count()、sum()、average()、max()和min()這五種聚合函式

        //統計行數
        int result = LitePal.count(News.class);
        // int result1 = LitePal.where("commentcount = ?", "0").count(News.class);
        //結果求和
        int result2 = LitePal.sum(News.class, "commentcount", int.class);
        //結果求平均
        double result3 = LitePal.average(News.class, "commentcount");
        //求最大值
        int result4 = LitePal.max(News.class, "commentcount", int.class);
        //求最小值
        int result5 = LitePal.min(News.class, "commentcount", int.class);