Android SQLite,如何从列中获取值?
我了解了如何获取所需的列,但是如何使用 Cursor 对象或 SQLiteDatabase 对象获取与该特定行(给定 rowID)上的该列关联的数据。
谢谢!
I see how to get the column I want, but how do I get the data associated with that column on that particular row (given the rowID) using a Cursor object or SQLiteDatabase object.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要从数据库列中获取特定值,您需要使用集合框架类,如 ArrayList、VectorList 等。
例如
Cursor c=handler.returnData();
To get the specific value from the database column you need to use the collection framework class like ArrayList,VectorList etc.
For Example
Cursor c=handler.returnData();
假设 c 是实例化的光标
c.moveToPosition(rowNumber);
Assume c is your instantiated cursor
c.moveToPosition(rowNumber);