本文主要是介绍GreenDao 直接执行SQL的方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
亲测可用,若有疑问请私信
try
{
DaoSession session=MyApplication.getInstances().getDaoSession();
long fromId=-1;
String strSql="select * from test order by ID desc limit 0,1 ";
Cursor c = session.getDatabase().rawQuery(strSql,null);
if(c.moveToFirst())
{
fromId=c.getLong(c.getColumnIndex("ID"));
}
c.close();
}
catch (Exception ex)
{
showToast(ex.getMessage());
}
这篇关于GreenDao 直接执行SQL的方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!