繰り返し処理

Posted by muchag | Android |
初回投稿:2011-04-24 (日) 19:41:17 | 最終更新:2011-04-24 (日) 19:43:12

 
[android]// データの読み込み
Cursor cursor = db.query(“sample”, null, null, null, null, null, null);
if (cursor.getCount() != 0) {

boolean isEof = cursor.moveToFirst();
while (isEof) {

String name = cursor.getString( cursor.getColumnIndex(“name”) );

isEof = cursor.moveToNext();
}
}

// Cursor の開放
cursor.close();[/android]

Posted by muchag | Android |
初回投稿:2011-04-24 (日) 19:41:17 | 最終更新:2011-04-24 (日) 19:43:12

コメントはまだありません »

No comments yet.

RSS feed for comments on this post. TrackBack URI

Leave a comment