LitePal学习(二)——数据库升级

前言

在LitePal学习(一)——配置讲过了LitePal的基本配置,这里讲讲LitePal的数据库升级吧。

讲到的知识点有

  • 在旧版本中如何添加新表
  • 在旧版本的表中如何添加列

下面就来具体讲讲

一.在旧版本中如何添加新表

我们先回顾下LitePal学习(一)——配置的内容,在之前我们已经建了一个Person表,如果我们现在版本升级,需要在新版本中添加另一张表Animal怎么处理呢,首先列出Animal类的代码,当然还是得继承我们得数据库data类DataBaseModel,代码如下:

package com.android.model;

/**
 * Title:
 * Description:
 * 

* Created by pei * Date: 2017/11/27 */ public class Animal extends DataBaseModel { private String name; private int weight; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getWeight() { return weight; } public void setWeight(int weight) { this.weight = weight; } }

然后在litepal.xml中注册数据库表:



    
    
    
    
    
       
       

之前数据库得版本version为1,这里也要版本号增1,变为2

接下来看看MainActivity中得调用:

   //存储
                Person person=new Person();
                person.setName("花花");
                person.setSex("女");
                person.setAge(25);
                //储存状态返回的是布尔值
                boolean save=person.save();
                if(save){
                    LogUtil.e(MainActivity.class,"====存储成功======");
                }else{
                    LogUtil.e(MainActivity.class,"====存储失败======");
                }
                //查询
                List allPersons = DataSupport.findAll(Person.class);
                for (Person p : allPersons) {
                    LogUtil.e(MainActivity.class, "====person======" + p.toString());
                }

                //存储
                Animal animal=new Animal();
                animal.setName("小狗");
                animal.setWeight(50);
                animal.save();
                //查询
                List allAnimals = DataSupport.findAll(Animal.class);
                if(CollectionUtil.isEmpty(allAnimals)){
                    LogUtil.e(MainActivity.class, "====empty======");
                }else{
                    for (Animal a : allAnimals) {
                        LogUtil.e(MainActivity.class, "====person======" + a.toString());
                    }
                }

看看打印得结果吧:


4.png
二.在旧版本得基础上添加新列

以Animal类为例,现在需要在表中增加一个year列,直接在Animal类中添加year属性,代码如下:

package com.android.model;

/**
 * Title:
 * Description:
 * 

* Created by pei * Date: 2017/11/27 */ public class Animal extends DataBaseModel { private String name; private int weight; private int year; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getWeight() { return weight; } public void setWeight(int weight) { this.weight = weight; } public int getYear() { return year; } public void setYear(int year) { this.year = year; } }

在litepal.xml中修改version版本号为3,代码如下:



    
    
    
    
    
       
       

在MainActivity中调用如下:

                //存储
                Person person=new Person();
                person.setName("花花");
                person.setSex("女");
                person.setAge(25);
                //储存状态返回的是布尔值
                boolean save=person.save();
                if(save){
                    LogUtil.e(MainActivity.class,"====存储成功======");
                }else{
                    LogUtil.e(MainActivity.class,"====存储失败======");
                }
                //查询
                List allPersons = DataSupport.findAll(Person.class);
                for (Person p : allPersons) {
                    LogUtil.e(MainActivity.class, "====person======" + p.toString());
                }

                //存储
                Animal animal=new Animal();
                animal.setName("小狗");
                animal.setWeight(50);
                animal.save();
                //查询
                List allAnimals = DataSupport.findAll(Animal.class);
                if(CollectionUtil.isEmpty(allAnimals)){
                    LogUtil.e(MainActivity.class, "====empty======");
                }else{
                    for (Animal a : allAnimals) {
                        LogUtil.e(MainActivity.class, "====person======" + a.toString());
                    }
                }

打印结果:

 E/pei: MainActivity:====存储成功======
 E/pei: MainActivity:====person======age=25  name=花花  sex=女  
 E/pei: MainActivity:====person======age=25  name=花花  sex=女  
 E/pei: MainActivity:====person======name=小狗  weight=50  year=0   
 E/pei: MainActivity:====person======name=小狗  weight=50  year=5  

ok,今天关于litePal数据库得升级就讲到这里,谢谢欸。

你可能感兴趣的:(LitePal学习(二)——数据库升级)