DBAdapter クラスの fetch IDs 関数は次のとおりです。すべての ID を取得し、トースト メッセージにリストを表示したいのですが、どこが間違っているのかわかりません。
public Cursor fetchAllIDs() {
return mDb.query(DATABASE_TABLE0, new String[] {IDno1}, null, null, null, null, null);
}
ボタンのクリックで呼び出す関数を次に示します。トーストにすべての ID を入力します。
private void fillData() {
// Get all of the IDs from the database
Cursor c = DBHelper.fetchAllIDs();
startManagingCursor(c);
String[] from = new String[] {DBAdapter.IDno1 };
Toast.makeText(getApplicationContext(), ""+from, Toast.LENGTH_LONG).show();
}