Cursor c = db.rawQuery("select * from tmxxb where tkb_id =1", null);
上面这么写是可以查出4条记录的
Cursor c = db.rawQuery("select * from tmxxb where tkb_id = ?", new String[]{"1"});
这么写就没有了,网上查了些资料,不都是这么写的吗