Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Android:SQLite,cursor.moveToNext()始终返回false大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_618_1@以下语句cursor.moveToNext()始终为false.我希望循环执行一次.我已经测试过查询实际返回的数据.

有谁知道是什么事吗?

String query ="SELECT(SELECT COUNT(*) FROM Table1) as count1,(SELECT COUNT(*) FROM table2) as @R_772_8023@;";

    cursor mcursor = mDb.rawQuery(query,null);

    if (mcursor != null) {
        mcursor.moveToFirst();
    }

    while (cursor.moveToNext()) {   //<---------------return false here???
        String result_0=cursor.getString(0);
    }

解决方法

我知道你已经解决你的问题,但这是对发生的事情的@L_673_3@演练:
cursor mcursor = mDb.rawQuery(query,null);

// At this point mcursor is positioned at just before the first record.

if (mcursor != null) {
    mcursor.moveToFirst();
    // mcursor is Now poinTing at the first (and only) record
}

while (mcursor.moveToNext()) {
    String result_0=cursor.getString(0);
}

// The loop above was skipped because `.moveToNext()` caused mcursor
// to move past the last record.

因此,在您只需要一条记录的情况下,您只需要mcursor.moveToFirst()或您的mcursor.moveToNext().

大佬总结

以上是大佬教程为你收集整理的Android:SQLite,cursor.moveToNext()始终返回false全部内容,希望文章能够帮你解决Android:SQLite,cursor.moveToNext()始终返回false所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。