实体的关系
一对一
一个学生(student)只有一个身份证(idCard)就是一对一关系。在greendao中表示这种一对一关系的方法是使用@ToOne注解。
Student类:
@Entity
public class Student {
@Id(autoincrement = true)
private Long id;
@NotNull
private String name;
@ToOne(joinProperty = "name") //joinProperty表示跟idCard一一对应的属性名
private IdCard idCard; //身份证
}
IdCard类:
@Entity
public class IdCard {
@Id
private String name; //要将Student类中的joinProperty的属性名设置为id(属性名和类型都要相同)
@Unique
private String idNum;
}
接着分别向studentDao和idCardDao插入name为小明的数据。(student不需要setIdCard,只需要将其他属性设置好并insert)。插入后查找小明的student对象,调用getIdCard,greendao会自动在idCard表中找到name为小明的对象并返回。
IdCard xiaoMingIdCard = new IdCard();//小明的身份证对象
xiaoMingIdCard.setName("小明");
xiaoMingIdCard.setIdNum("111");
Student xiaoMing = new Student();//小明的student对象
xiaoMing.setName("小明");
studentDao.insert(xiaoMing);
idCardDao.insert(xiaoMingIdCard);
Log.d("ToOne",studentDao.loadAll().get(0).getIdCard().getIdNum());//这时候会打印出小明的身份证号码111
假设idCard表中还有另外一个名为小刚的数据,这时候如果将小明的身份证设置成小刚的身份证,那么从student表中的“小明”会自动变成“小刚”。
IdCard xiaoGangIdCard = new IdCard();//小刚的身份证对象
xiaoGangIdCard.setName("小刚");
xiaoGangIdCard.setIdNum("110");
idCardDao.insert(xiaoGangIdCard);//将小刚的身份证插入表中
Student student = studentDao.loadAll().get(0);//查找出小明的student数据
student.setIdCard(xiaoGangIdCard );//将小刚的身份证设置到小明中
student.update();//更新小明的数据库数据
daoSession.clear();//清理下缓存
Log.d("ToOne",studentDao.loadAll().get(0).getName());
//即使我们没有手动去修改小明的名字,但此时“小明”的名字已经变成“小刚”了。
PS:student中的getIdCard只能获取到已存在于idCard表中的数据,换句话说,如果该学生的身份证数据没有插入过数据库中的话,即使调用setIdCard也不会将这个“全新的”身份证数据存入idCard表中,只能改变student的数据。
一对多
一个学生(student)拥有多张信用卡(creditCard)就是一对多的关系。表示这种关系使用@ToMany
Student类:
@Entity
public class Student {
@Id(autoincrement = true)
private Long id;
@NotNull
private String name;
@ToMany(referencedJoinProperty = "ownerId")//ownerId为CreditCard类中的一个属性,将自动赋值为student的id
private List<CreditCard> creditCards;//信用卡列表
}
CreditCard类:
@Entity
public class CreditCard {
@Id
private Long id;//CreditCard自己的id
private Long ownerId;//拥有这个信用卡的student的id,所以一定要和student的id属性同类型
private String name;
private String cardNum;
}
只要将student的id设置到creditCard中就完成绑定了。
creditCard.setOwnerId(student.getId());
多对多
一名学生有多名老师,一位老师也有多名学生,这样的关系就是多对多的关系。使用@ToMany和@JoinEntity注解以及一个额外的实体类实现。
StuTcherBean类:
@Entity
public class StuTcherBean {//用于联结Student类和Teacher类的实体类
@Id(autoincrement = true)
private Long Id;
private Long studentId;//表示Student
private Long teacherId;//表示Teacher
}
Student类:
@Entity
public class Student {
@Id(autoincrement = true)
private Long id;
@NotNull
private String name;
@ToMany
//JoinEntity表示联结到某个实体。entity属性表示用于联结的类。source表明自己是那个。target表示想要联结的目标
@JoinEntity(entity = StuTcherBean.class,sourceProperty = "studentId",targetProperty = "teacherId")
private List<Teacher> teachers;
}
Teacher类:
@Entity
public class Teacher {
@Id(autoincrement = true) //标记为id(通常用long类型来作为id),autoincrement为自增长
private Long id;
@NotNull
private String name;
@ToMany
//和Student类的区别就是source和target对调
@JoinEntity(entity = StuTcherBean.class,sourceProperty = "teacherId",targetProperty = "studentId")
private List<Student> students;
}
储存的方法是用需要联结的学生和老师的Id构建一个StuTcherBean对象然后insert入数据库中,就可以用teacher.getStudents()和student.getTeachers()来获取绑定的对象
StuTcherBean bean = new StuTcherBean(null,student.getId(),teacher.getId());//构建联结类
daosession.insert(bean);//插入数据库
student.getTeachers();//读取该学生的老师列表
teacher.getStudents();//读取该老师的学生列表
数据库升级
一般的数据库升级只需要改动gradle文件中的schemaVersion的值就会在初始化的时候进行数据库升级。也可以手动实现数据库的自定义升级,不展开。
数据库加密
greendao使用SQLcipher。
首先导入SQLcipher库
implementation 'net.zetetic:android-database-sqlcipher:3.5.6'
然后将初始化的代码做一下修改
DaoMaster.DevOpenHelper helper = new DaoMaster.DevOpenHelper(this,"green_db");
//Database db = helper.getWritableDb();这是不加密的写法
Database db = helper.getEncryptedWritableDb(“lee”);//这是加密写法,lee是密码随你喜欢填什么
daoSession = new DaoMaster(db).newSession();