SQLite计数示例

SQLite计数示例,第1张

SQLite计数示例

可以通过getInt(index)作为

cursor.getInt(1); // this is for example, you have to adjust index in your pre

游标还具有内置函数getCount()来返回行号,因此也可以这样:

// assuming your table has `id` column as primary key or unique key.Cursor dataCount = mDb.rawQuery("select id from " + DATAbase_JOURNAL_TABLE, null);dataCount.getCount();

有关更多信息,请参见android
devloper的Cursor文档



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4953571.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存