SELECT * FROM sqlite_master WHERE type = 'table' возвращает таблицу метаданных в sqlite в Android Pie

try:

if (
     Get-Process iexplore -ea silentlycontinue | 
     Where-Object {$_.MainWindowTitle -ne ""}
)
0
задан Jalal Khan 17 January 2019 в 07:28
поделиться

1 ответ

Вы можете попробовать с

if (cursor_names.moveToFirst()) {
    while ( !cursor_names.isAfterLast() ) {
        String name=cursor_names.getString(cursor_names.getColumnIndex("tbl_name"));
        cursor_names.moveToNext();
    }
}

Alternate

 // looping through all rows and adding to list
    if (cursor.moveToFirst()) {
        do {
            // Your work
        } while (cursor.moveToNext());
    }
0
ответ дан IntelliJ Amiya 17 January 2019 в 07:28
поделиться
Другие вопросы по тегам:

Похожие вопросы: