android SQLite原始和普通查询只返回一列

时间:2012-02-13 11:39:37

标签: android sqlite

我的代码如下,在查询中我得到了我的SQLite数据库的3列,其中_pk等于从onclick方法传递的字符串。

String[] args={id};
String[] asColumnsToReturn = new String[] { COLUMN_ID,COLUMN_TITLE,COLUMN_ADDRESS};
return (getReadableDatabase().query(TABLE_NAME,asColumnsToReturn,"_pk=?",args,null,null,null));

String[] args={id};
return (getReadableDatabase().rawQuery("Select _id,_name,_address from _exhibitor where=?",args));

0 个答案:

没有答案