- Android
- 2011-11-15 - 更新:2015-12-03
この記事は最終更新日から1年以上経過しています。
データベース【SQLite】での検索方法です。
SQLiteOpenHelperを使用していますが、以前にも書いたので説明は割愛します。
方法1
Cursor c = db.query(strTable, new String[] { "_id" }, "_id = *", null, null, null, null);
方法2
Cursor c = db.query(strTable, new String[] { "_id" }, "_id = ?", new String[] { 0 }, null, null, null);
方法3
String strSql = "select _id from TABLE"; Cursor c = db.rawQuery(strSql, null);
方法3
String strSql = "select _id from TABLE where _id = ?"; Cursor c = db.rawQuery(strSql, new String[] { 0 });
3,425 views