如何从 SQLite 检索特定列并将其显示在 android 中的 ListView 表单中?

发布于 2024-11-07 05:06:11 字数 320 浏览 0 评论 0原文

如何从 SQLite 检索特定的列并将其显示在 android 中的 ListView 表单中?

您好,

我有一个 28 行 8 列的数据库,保存在 Eclipse 项目的“assets”文件夹中,仅用于保存应用程序数据。我的目标是从“assets”文件夹中的数据库中读取一两个特定列(而不是一个值),并以 ListView 表单显示该列的数据。

但是,我不想一次读取所有列,因为它很慢,因为我在数据库中也有 blob。相反,我想一次仅单独读取一列,并以 ListView 形式显示它。你能帮我解决这个问题吗?

How can I retrieve a particular coloumn column from SQLite and display it in a ListView form in android?

Hi

I have a database having with 28 rows and 8 columns-saved in "assets" folder of my project in eclipse, just for saving application data. My goal is to read one or two specific columns (not one value) from the database in "assets" folder and display that column's data in a ListView form.

However, I don't want to read all columns at once, because it's slow as I have blob's in db too. Instead, I'd like to read just one column at a time, separately, and display it in ListView form. Can you please help me to solve this problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

混吃等死 2024-11-14 05:06:11

考虑这种变化:

select column_name
来自表名
哪里
列名称 = 所需值
订购方式
列名

consider a variation of this:

select column_name
from table_name
where
column_name = desired_value
order by
column_name

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文