如何查看表中的一条数据

发布于 2024-10-16 08:46:31 字数 839 浏览 2 评论 0原文

我在数据库中插入了 EditText 值,请帮助我如何获取 table 中的所有数据并在下一个 Activity 中显示它,请帮助我。我使用以下代码进行插入:

private static final String DATABASE_CREATE = "create table pill (id integer primary key autoincrement, "
    + "med VARCHAR, " + "dose1 VARCHAR,"+"dose2 VARCHAR,"+"dose3 VARCHAR);";

// ---insert data into the database---
public long insertData(String med, String dose1,String dose2,String dose3) {
    ContentValues initialValues = new ContentValues();

    initialValues.put(Med, med);
    initialValues.put(Dose1, dose1);
    initialValues.put(Dose2, dose2);
    initialValues.put(Dose3, dose3);


    return db.insert(DATABASE_TABLE, null, initialValues);
}

meddose1dose2dose3 是来自 的值>EditText 位于另一个类中。

I inserted EditText value in database, Please help me how to get all the data in table and show it in a next Activity, please help me. I use the following code for inserting:

private static final String DATABASE_CREATE = "create table pill (id integer primary key autoincrement, "
    + "med VARCHAR, " + "dose1 VARCHAR,"+"dose2 VARCHAR,"+"dose3 VARCHAR);";

// ---insert data into the database---
public long insertData(String med, String dose1,String dose2,String dose3) {
    ContentValues initialValues = new ContentValues();

    initialValues.put(Med, med);
    initialValues.put(Dose1, dose1);
    initialValues.put(Dose2, dose2);
    initialValues.put(Dose3, dose3);


    return db.insert(DATABASE_TABLE, null, initialValues);
}

med, dose1, dose2, dose3 are the values from the EditText which is in another class.

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

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

发布评论

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

评论(1

时光与爱终年不遇 2024-10-23 08:46:31

您必须使用:

db.query()

请参阅

仅查询第一个数据从表中

You have to use:

db.query()

See that

Query only the first data from a table

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