データベースクエリの結果を入力するテーブルレイアウトがあります。全選択を使用すると、クエリは4行のデータを返します。
このコードを使用して、テーブル行内のテキストビューを作成します。
Cursor c = null;
c = dh.getAlternative2();
startManagingCursor(c);
// the desired columns to be bound
String[] columns = new String[] {DataHelper.KEY_ALT};
// the XML defined views which the data will be bound to
int[] to = new int[] { R.id.name_entry};
SimpleCursorAdapter mAdapter = new SimpleCursorAdapter(this,
R.layout.list_example_entry, c, columns, to);
this.setListAdapter(mAdapter);
KEY_ALTの4つの異なる値を分離し、それらがどこに行くかを選択できるようにします。上記の例の1つではなく、4つの異なるテキストビューを作成してほしい。結果のカーソルをどのように反復できますか?
よろしく、AK
以下のコードを使用してカーソルを移動し、文字列配列に保存し、4つのテキストビューで設定した後
String array[] = new String[cursor.getCount()];
i = 0;
cursor.moveToFirst();
while (!cursor.isAfterLast()) {
array[i] = cursor.getString(0);
i++;
cursor.moveToNext();
}
データベースクエリによって返されるCursor
オブジェクトは、before最初のエントリに配置されるため、反復は次のように簡略化できます。
while (cursor.moveToNext()) {
// Extract data.
}
SQLiteDatabase
からの参照。
for (boolean hasItem = cursor.moveToFirst(); hasItem; hasItem = cursor.moveToNext()) {
// use cursor to work with current item
}
反復は次の方法で実行できます。
Cursor cur = sampleDB.rawQuery("SELECT * FROM " + Constants.TABLE_NAME, null);
ArrayList temp = new ArrayList();
if (cur != null) {
if (cur.moveToFirst()) {
do {
temp.add(cur.getString(cur.getColumnIndex("Title"))); // "Title" is the field name(column) of the Table
} while (cur.moveToNext());
}
}
私はchiranjibに同意します、私のコードは次のとおりです:
if(cursor != null && cursor.getCount() > 0){
cursor.moveToFirst();
do{
//do logic with cursor.
}while(cursor.moveToNext());
}
カーソルを反復処理する非常に簡単な方法を見つけました
for(cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()){
// access the curosr
DatabaseUtils.dumpCurrentRowToString(cursor);
final long id = cursor.getLong(cursor.getColumnIndex(BaseColumns._ID));
}
public void SQLfunction() {
SQLiteDatabase db = getReadableDatabase();
SQLiteQueryBuilder qb = new SQLiteQueryBuilder();
String[] sqlSelect = {"column1","column2" ...};
String sqlTable = "TableName";
String selection = "column1= ?"; //optional
String[] selectionArgs = {Value}; //optional
qb.setTables(sqlTable);
final Cursor c = qb.query(db, sqlSelect, selection, selectionArgs, null, null, null);
if(c !=null && c.moveToFirst()){
do {
//do operations
// example : abcField.setText(c.getString(c.getColumnIndex("ColumnName")))
}
while (c.moveToNext());
}
}
注:SQLiteQueryBuilder()を使用するには、追加する必要があります
グレードファイルで 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'をコンパイルします