欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

安卓GreenDao框架一些进阶用法整理

程序员文章站 2024-02-25 11:37:52
大致分为以下几个方面: 一些查询指令整理 使用sql语句进行特殊查询 检测表字段是否存在 数据库升级 数据库表字段赋初始值 一、查询...

大致分为以下几个方面:

  1. 一些查询指令整理
  2. 使用sql语句进行特殊查询
  3. 检测表字段是否存在
  4. 数据库升级
  5. 数据库表字段赋初始值

一、查询指令整理

1.链式执行的指令

return mdaosession.getuserdao().querybuilder().
 xxx.
 xxx.
 xxx.
 list();

一般的查询语句会在中间xxx的位置加上各种判断和过滤的方法指令,除了最后的终结指令list()或unique()返回的是集合或业务对象,其他的都是返回querybuilder对象,大多数情况下xxx的位置都是填上where语句,还有一些其他和sql关联的语句便于使用。

“whereor” where语句里面写的条件都是用“且”连接,whereor里的语句使用“或”连接

“distinct”  直接过滤掉重负字段

“limit”  分页n个一页,一般和offset结合使用

“offset” 忽略查询出的前n条结果

“orderasc” 以字段升序排序

“orderdesc”以字段降序

“preferlocalizedstringorder” 本地化字符串排序

“ordercustom” 自定义排序 里面需要传两个参数: 一个属性 和对应的排序方案 asc 或是 desc

“orderraw”  也是自定义排序, 把字段和 排序方案 写在一个字符串传入

“stringordercollation” 也是自定义排序 可以合并多个升降排序方案 以日期升序 且 价格降序

2.条件里的指令

return mdaosession.getuserdao().querybuilder().
 where(userdao.properties.userid.in(useridlist), userdao.properties.userage.eq(19)).
 list();

一个简单的where语句大概是这样,在where的括号里面可以并列的写很多条件,其中全部以“且” 来连接。除了上面的“in”和“eq”还有很多其他判断条件

“noteq” 和eq相反,别傻傻在再去外面敲“!”取反

“notin” 同上

“or” 或者

“like” 就是sql语句的like  "%"+string+"%"

“between” 也就是between ? and ?  可以取两个值的区间 (但是这条语句要慎用,不同的数据库不一样,有的是a<条件<b,有的是a<=条件<=b)

“gt” 相当于 >

“ge”相当于 >=

“lt” 相当于 <

“le”相当于  <=

“isnull” 为空

“notisnull” 不为空

二、使用sql语句进行特殊查询

一般遇到普通的增删改查操作无法轻易实现的功能,会使用这种rawquery的方式。 我经常遇到的也就是两种场景:

1.使用select distinct

常用与一对多关系,假设图书馆现在有个“用户存书表” 有的用户有20本书,表里就会有20条他的数据,每条对应一本不同的书。

这时假设有个需求,查出这个表中,所有的用户名字,不许重复。 这时候用普通的查询指令就会非常麻烦了,需要使用select distinct指令查出某列名所有不重复的条目。

string querystring =
 "select distinct " + userbookdao.properties.username.columnname + " from " + userbookdao.tablename
  + " order by "
  + userbookdao.properties.createdtime
  + " desc "
  + " limit "
  + page * limit_num
  + " , "
  + limit_num;
 
arraylist<string> result = new arraylist<>();
cursor c = mdaosession.getdatabase().rawquery(querystring,new string[]{});
try {
 if (c != null) {
 if (c.movetofirst()) {
  do {
  result.add(c.getstring(0));
  } while (c.movetonext());
 }
 }
} finally {
 if (c != null) {
 c.close();
 }
}

大概代码的画风就是这个样子,先拼接出一个符合sql语法的字符串,上面也随机加了一写其他的操作指令字段排序和分页,使得查询指令看上去更加完整,然后使用游标来接收上面的查询结果。

可能大多数查询的时候会带上一些参数,比如where xx = xx 的过滤条件,假设有个需求需要在之前的查询用户需求上加上对出版社和图书价格的限制,则查询方式如下

string querystring =
 "select distinct " + userbookdao.properties.username.columnname + " from " + userbookdao.tablename // 董铂然博客园
  + " where "
  + userbookdao.properties.publisher.columnname + " = ?"
  + " and "
  + userbookdao.properties.price.columnname + " > ?"
  + " order by "
  + userbookdao.properties.createdtime
  + " desc ";
 
arraylist<string> result = new arraylist<>();
cursor c = mdaosession.getdatabase().rawquery(querystring, new string[]{"某出版社"),
 string.valueof(100.00)});
try {
 if (c != null) {
 if (c.movetofirst()) {
  do {
  result.add(c.getstring(0));
  } while (c.movetonext());
 }
 }
} finally {
 if (c != null) {
 c.close();
 }
}

带上参数的查询字符串需要在上面使用问号占位,然后在下面用rawquery带参数的api里填上相关的入参。

2. select同时查询多个字段

还是用这个查书的例子,假设一下要查“书名”、“出版社”、“价格” 三个字段

string querystring = "select "
 + userbookdao.tablename + "." + userbookdao.properties.bookname.columnname + ","
 + userbookdao.tablename + "." + userbookdao.properties.publisher.columnname + ","
 + userbookdao.tablename + "." + userbookdao.properties.price.columnname + " "
 + "from "
 + userbookdao.tablename + " "
 + "where"
 + userbookdao.properties.price + " > 100.00 ";
cursor cursor = null;
try {
 cursor = session.getdatabase().rawquery(querystring,new string[]{});
 if (cursor == null) {
 return paymap;
 }
 // 取出三个字段分别对应的索引,下面再对着索引去取值
 int nameindex = cursor.getcolumnindex(userbookdao.properties.bookname.columnname);
 int publisherindex = cursor.getcolumnindex(userbookdao.properties.publisher.columnname);
 int priceindex = cursor.getcolumnindex(userbookdao.properties.price.columnname);
 if (nameindex != -1 && publisherindex != -1 && priceindex != -1) {
 while (cursor.movetonext()) {
  string name = cursor.getstring(nameindex);
  string publisher = cursor.getstring(publisherindex);
  double price = cursor.getdouble(priceindex);
  // 这里取到三个字段 自己是存模型还是字典 自己处理。
 }
 }
} finally {
 if (null != cursor) {
 cursor.close();
 }
}

下面可以一次性的取出三个所需字段进行使用,需要先得到字段对应索引,然后再对着索引取值。

三、检测表字段是否存在

private boolean hascolumn(sqlitedatabase db, string tablename, string column) {
 if (textutils.isempty(tablename) || textutils.isempty(column)) {
 return false;
 }
 cursor cursor = null;
 try {
 cursor = db.query(tablename, null, null, null, null, null, null);
 if (null != cursor && cursor.getcolumnindex(column) != -1) {
  return true;
 }
 } finally {
 if (null != cursor) {
  cursor.close();
 }
 }
 return false;
}

和上面取游标的方式类似,取出的列索引值如果不是-1,则代表能够取到这个字段返回true,否则和入参非法一起返回fasle。

四、数据库升级

这边会调用上面判断列名是否已经存在的方法。

然后重写父类的这个onupgrade方法

private static class demoopenhelper extends daomaster.openhelper {
 public demoopenhelper(context context, string name, sqlitedatabase.cursorfactory factory) {
 super(context, name, factory);
 }
 @override
 public void onupgrade(sqlitedatabase db, int oldversion, int newversion) {
 // 数据库的版本控制 可以随着版本叠加不断增加差值
 if (oldversion < 2) {
  if (!hascolumn(db, userbookdao.tablename, userbookdao.properties.author.columnname)) {
  string sql = "alter table " + userbookdao.tablename +
   " add column " + userbookdao.properties.author.columnname + " text";
  db.execsql(sql);
  }
  if (!hascolumn(db, userbookdao.tablename, userbookdao.properties.type.columnname)) {
  string sql = "alter table " + userbookdao.tablename +
   " add column " + userbookdao.properties.type.columnname + " integer";
  db.execsql(sql);
  }
 }
 }
}

除了上面的修改表,如果改动太多或是换了表明,还可以直接删了重建(这么做的话之前的数据也就删了)

if (oldversion < 3) {
 userdao.droptable(new standarddatabase(db),true);
 userstudentdao.createtable(new standarddatabase(db),true);
}

五、数据库表字段赋初始值

有些字段的初始值如果你不希望是0,或是空字符串,可以赋初始值。现在的赋值初始值就分为两种情况了

1.建表时附初始值

在3.0以前的版本 还是要写一个module,里面写类似代码来建表的

private static void adduser(schema schema) {
 entity user = schema.addentity("user");
 user.addidproperty();
 user.addstringproperty("name").notnull().defvalue("\"jack\"");
 user.addstringproperty("address");
 user.addstringproperty("teacher");
 user.addintproperty("age").primjavatype().defvalue("17");
}

在3.0之后推行用注解和直接写entity的写法,所以可以直接在entity的类里指定

@entity
public class student {
 @id(autoincrement = true)
 private long id; //主键
 private string name;
 private string schooltime = "09-01"; //开学时间默认都是9月1日
 private int age = 19; // 刚上大学的默认都是19岁
 // 下面生成的getter 和setter省略 。。。
}

2.数据库升级时给升级字段赋初始值

上面说的的数据库升级,是需要写一条alter table的sql语句,可以直接拼接到这一行后面

// 上面判断该列名是否存在
// ...
string sql = "alter table " + userbookdao.tablename +
 " add column " + userbookdao.properties.type.columnname + " integer" + " not null default(-1) "; // 直接拼接在语句最后 董铂然博客园
db.execsql(sql);
// ...

注:以前听过一种说法是直接在userdao这种生成的类里直接在生成的创建语句后面拼接default,这里非常反对, 首先人家类名明确表明 // this code is generated by greendao, do not edit.  并且有些人的代码可能设置的是手动生成,但我们的项目就在gradle里设置了每次build都会先自动生成一下,这种情况每次都会覆盖。

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!