GreenDao操作记录 (length操作/or)

由于这些东西比较容易忘记,记录一下,方便以后查看

“whereOr” where语句里面写的条件都是用“且”连接,whereOr里的语句使用“或”连接
“distinct”  直接过滤掉重负字段
“limit”  分页n个一页,一般和offset结合使用
“offset” 忽略查询出的前n条结果
“orderAsc” 以字段升序排序
“orderDesc”以字段降序
“preferLocalizedStringOrder” 本地化字符串排序
“orderCustom” 自定义排序 里面需要传两个参数: 一个属性 和对应的排序方案 ASC 或是 DESC
“orderRaw”  也是自定义排序, 把字段和 排序方案 写在一个字符串传入
“stringOrderCollation” 也是自定义排序 可以合并多个升降排序方案 以日期升序 且 价格降序
“notEq” 和eq相反,别傻傻在再去外面敲“!”取反
“notIn” 同上
“or” 或者
“like” 就是sql语句的LIKE  "%"+string+"%"
“between” 也就是BETWEEN ? AND ?  可以取两个值的区间 (但是这条语句要慎用,不同的数据库不一样,有的是A<条件
“ge”相当于 >=
“lt” 相当于 <
“le”相当于  <=
“isNull” 为空
“notIsNull” 不为空

最近在做公司其他旧项目重构,发现旧项目的数据库操作都是手动写sql语句来执行,所以重构就把数据库的操作切换为GreenDao来操作

但是发现GreenDao有部分条件无法直接使用,在网上搜了一会没找到答案,就简单了看了下源码,记录一下这些操作

1.长度 length(xxx = x)的操作

例如要查询item_no长度为2的所有信息
sql语句: select * from bi_t_item_info where length(item_no) = 2
这个时候要用GreenDao实现,发现Property里面没有对应 length的操作

简单查看源码发现:

queryBuilder.where( Bi_t_item_infoDao.Properties.Softid.eq(softid),
                      .list();

//and
queryBuilder.and(Bi_t_item_infoDao.Properties.Softid.eq(softid),
                Bi_t_item_infoDao.Properties.Item_no.eq(item_no));

不管是queryBuilder的where,and或者or操作,都会创建一个WhereCondition对象,然后添加到whereConditions集合里面,然后调用build()方法构建查询语句,最终会调用appendWhereClause方法来生成查询sql

void appendWhereClause(StringBuilder builder, String tablePrefixOrNull, List values) {
        ListIterator iter = whereConditions.listIterator();
        while (iter.hasNext()) {
            if (iter.hasPrevious()) {
                builder.append(" AND ");
            }
            WhereCondition condition = iter.next();
            condition.appendTo(builder, tablePrefixOrNull);
            condition.appendValuesTo(values);
        }
    }
 
 

appendWhereClause方法里面看到,会遍历whereConditions这个集合,然后调用它的appendTo()和appendValuesTo()来处理sql语句的拼接,而appendTo()只有两种实现PropertyCondition.appendTo()和StringCondition.appendTo()
而平时使用使用Bi_t_item_infoDao.Properties.Softid.eq(softid),就是使用PropertyCondition来实现拼接的

PropertyCondition.appendTo()

public static StringBuilder appendProperty(StringBuilder builder, String tablePrefix, Property property) {
        if (tablePrefix != null) {
            builder.append(tablePrefix).append('.');
        }
        builder.append('"').append(property.columnName).append('"');
        return builder;
    }

StringCondition.appendTo()

public void appendTo(StringBuilder builder, String tableAlias) {
            builder.append(string);
        }

嘿嘿,在这里发现StringCondition.appendTo()是直接拼接我们写入的string,所以可以这样写,完成length(xxx)操作

queryBuilder.where(Bi_t_item_infoDao.Properties.Softid.eq(softid),
                        new WhereCondition.StringCondition("length(item_name) = 2"))
                .list();

new WhereCondition.StringCondition("length(item_name) = 2"),最终在拼接sql的时候会直接拼接上length(item_name) = 2

2.or 条件查询

or条件查询,可以这样写

QueryBuilder queryBuilder = daoSession.getBi_t_item_infoDao().queryBuilder();
        WhereCondition disCondition = queryBuilder.or(Bi_t_item_infoDao.Properties.Display_flag.eq("1"),
                                Bi_t_item_infoDao.Properties.Display_flag.eq("2"),
                                Bi_t_item_infoDao.Properties.Display_flag.eq("3"));
        WhereCondition goodsCondition = queryBuilder.or(Bi_t_item_infoDao.Properties.Barcode.like("%" + content + "%"),
                                Bi_t_item_infoDao.Properties.Item_subno.like("%" + content + "%"),
                                Bi_t_item_infoDao.Properties.Item_name.like("%" + content + "%"),
                                Bi_t_item_infoDao.Properties.Item_subname.like("%" + content + "%"));

        return queryBuilder.where(disCondition,
                        goodsCondition,
                        Bi_t_item_infoDao.Properties.Softid.eq(softid))
                .limit(20)
                .list();

也可以这样写

QueryBuilder queryBuilder = daoSession.getBi_t_item_infoDao().queryBuilder();
        queryBuilder.where(Bi_t_item_infoDao.Properties.Item_clsno.like(item_clsno));
        queryBuilder.or(Bi_t_item_infoDao.Properties.Display_flag.eq("1"),
                Bi_t_item_infoDao.Properties.Display_flag.eq("2"),
                Bi_t_item_infoDao.Properties.Display_flag.eq("3"));
        queryBuilder.and(Bi_t_item_infoDao.Properties.Combine_sta.notEq("A"),
                Bi_t_item_infoDao.Properties.Softid.eq(softid));

        return queryBuilder.orderAsc(Bi_t_item_infoDao.Properties.Item_name)
                .limit(limit)
                .list();

如果有更好的实现,更方便的操作,望各位大哥指教~感谢

你可能感兴趣的:(GreenDao操作记录 (length操作/or))