ETC

Cursor ColumnNames

MuGrammer 2014. 3. 3. 21:14

String[] str = cursor.getColumnNames();

while (cursor.moveToNext()) {

for (int i = 0; i < str.length; i++) {

String s = str[i];

Log.d(Constants.LOGCAT_FILTER, s + "      " + cursor.getString(i));

}

Log.d(Constants.LOGCAT_FILTER, "-----------------------------------------------");

}



_id

_data

_size

_display_name

mime_type

title

date_added

date_modified

description

picasa_id

isprivate

latitude

longitude

datetaken

orientation

mini_thumb_magic

bucket_id

bucket_display_name

width

height

protected_type

storage_id

반응형

'ETC' 카테고리의 다른 글

[Android] TextView & Html.fromHtml  (0) 2014.05.22
[기타] OutLook 조건부 서식  (0) 2014.03.31
Application Analytics  (0) 2013.10.17
MongoDB 오류  (0) 2013.08.20
MongoDB 개요  (0) 2013.08.18