Android使用Cursor查找rowID是否存在?
我试图确定某一行是否存在,当我只是查找第一行时,我使用
Cursor_element.moveToFirst() 它返回一个布尔值,
但对于其他行,我将使用什么函数?我正在尝试
Cursor_element.moveToPosition(7)
我猜测 moveToPosition
对单元格进行计数?但我不知道
确定行是否存在的最佳方法是什么?
I am trying to determine if a certain row exists, when I am just looking for the first row I use
Cursor_element.moveToFirst()
which returns a boolean
but for other rows, what function would I use? I am trying
Cursor_element.moveToPosition(7)
where I am guessing that the moveToPosition
counts cells? but I don't know
what is the best way to determine if a row exists?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
参考: http://developer.android.com /reference/android/database/sqlite/SQLiteCursor.html#getCount%28%29
Use
Reference: http://developer.android.com/reference/android/database/sqlite/SQLiteCursor.html#getCount%28%29