我想在我的 android 程序中写这个查询
从 temp2 中选择 root,其中 sourec='lee' 和 destination='jhon'
我尝试过这样的事情
Cursor c=db.rawQuery("select root from Temp2 where sourec='" + so + "' and destination='" + de + "'",null);
c.moveToFirst();
while(!c.isAfterLast())
{
Toast.makeText(HandelDatbase.this,c.getString(0),1000).show();
c.moveToNext();
}
c.close();
}
但是没有得到答案请帮助我...