使用游标获取字段值

使用游标获取字段值,第1张

使用游标获取字段值

我认为您可以忘记检查null。

而是检查是否有数据,然后使用游标访问列:

Cursor cursor = fetchOption(0);if (cursor.moveToFirst()) // data?   System.out.println(cursor.getString(cursor.getColumnIndex("title"));cursor.close(); // that's important too, otherwise you're gonna leak cursors

阅读Android教程可能也很有意义。记事本教程似乎很合适:http
:
//developer.android.com/guide/tutorials/notepad/index.html



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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存