在 Android 中从光标获取字符串?

发布于 2024-11-19 11:03:34 字数 543 浏览 8 评论 0 原文

我的情况很简单。 我有一个包含三列的 SQLite 数据库:

  1. rowid
  2. title =>文字
  3. 内容=> text

这是我的 dataBase 类中的一个方法:

public Cursor fetchMessage(String tableNane, int id) {
    return myDataBase.rawQuery("SELECT rowid as _id, title FROM "+tableName
    +" WHERE rowid = "+id, null);
}

此方法将仅返回一行。

在我的活动中,我这样写:

Cursor cursor = myDbHelper.fetchMessage(tableName, id);

现在,我想将内容字段的文本存储在字符串中。

这怎么能做到呢?

My cose is SIMPLE.
I have a SQLite-Database with three columns:

  1. rowid
  2. title => text
  3. content => text

This is a method in my dataBase-class:

public Cursor fetchMessage(String tableNane, int id) {
    return myDataBase.rawQuery("SELECT rowid as _id, title FROM "+tableName
    +" WHERE rowid = "+id, null);
}

This method will return only one row.

In my activity I wrote this:

Cursor cursor = myDbHelper.fetchMessage(tableName, id);

Now, I want to store the content field's text in a String.

How can this be done?

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

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

发布评论

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

评论(2

捂风挽笑 2024-11-26 11:03:34

使用这个:

if (cursor.moveToFirst()) {
    str = cursor.getString(cursor.getColumnIndex("content"));
}

Use this:

if (cursor.moveToFirst()) {
    str = cursor.getString(cursor.getColumnIndex("content"));
}
┾廆蒐ゝ 2024-11-26 11:03:34

首先,您需要使用 moveToFirst()-方法。

之后,您可以使用 getString()getInt()-方法。

First you'll want to move the Cursor you got from your Query to the first row using the moveToFirst()-method.

After that you can get your fields values by using the getString() or getInt()-methods.

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