GreenDao 执行sql语句

文档中提供的方法http://greendao-orm.com/documentation/queries/ 不能满足需要,具有局限性,使用以下语句来进行操作倒是很灵活

String sql = “select * from "+ xxxDao.getTableName();

Cursor c = session.getDatabase().rawQuery(sql,null);

你可能感兴趣的:(android,数据库)