从数据库sqlite获取信息

发布于 2024-10-29 08:02:04 字数 157 浏览 1 评论 0原文

如何从数据库中获取信息。我想执行这一行

String nom = db.execSQL("select name from person where id='+id+'");

任何人都可以纠正我这一行以从表 person 中获取人名

how to get an information from the database. I want to execute this line

String nom = db.execSQL("select name from person where id='+id+'");

Can any one correct me this line to get the name of person from the table person

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

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

发布评论

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

评论(2

桜花祭 2024-11-05 08:02:04

如果您的 ID 是整数数据类型,请尝试此操作。

public String getResult(int id)
{
    String name = null;
    try
    {
        Cursor c = null;
        c = db.rawQuery("select name from person where id="+id, null);
        c.moveToFirst();
        name = c.getString(c.getColumnIndex("name"));
        c.close();
    }
    catch(Exception e)
    {
        e.printStackTrace();
    }
    return name; 
}

如果您的 ID 是字符串数据类型,请尝试此操作。

 public String getResult(String id)
{
    String name = null;
    try
    {
        Cursor c = null;
        c = db.rawQuery("select name from person where id=" + "\""+id+"\"", null);
        c.moveToFirst();
        name = c.getString(c.getColumnIndex("name"));
        c.close();
    }
    catch(Exception e)
    {
        e.printStackTrace();
    }
    return name; 
}

Please try this if your id is integer datatype.

public String getResult(int id)
{
    String name = null;
    try
    {
        Cursor c = null;
        c = db.rawQuery("select name from person where id="+id, null);
        c.moveToFirst();
        name = c.getString(c.getColumnIndex("name"));
        c.close();
    }
    catch(Exception e)
    {
        e.printStackTrace();
    }
    return name; 
}

Pease try this if your id is String datatype.

 public String getResult(String id)
{
    String name = null;
    try
    {
        Cursor c = null;
        c = db.rawQuery("select name from person where id=" + "\""+id+"\"", null);
        c.moveToFirst();
        name = c.getString(c.getColumnIndex("name"));
        c.close();
    }
    catch(Exception e)
    {
        e.printStackTrace();
    }
    return name; 
}
匿名的好友 2024-11-05 08:02:04
Cursor cursor = db.rawQuery("SELECT name FROM person WHERE id = ?", new String[] { id });
cursor.moveToFirst();
String nom = cursor.getString(cursor.getColumnIndex("name"));

这应该是最简单的方法(未经测试,但您应该明白)。

看起来你也不知道 android 如何处理数据库访问,所以我建议至少看看 光标类。

execSQL() 文档:

执行单个 SQL 语句,该语句不是 SELECT 或返回数据的任何其他 SQL 语句。

Cursor cursor = db.rawQuery("SELECT name FROM person WHERE id = ?", new String[] { id });
cursor.moveToFirst();
String nom = cursor.getString(cursor.getColumnIndex("name"));

this should be the easiest way (not tested, but you should get the idea).

It also looks like you have no idea how android handles database access, so I recommend to look at least at the Cursor class.

execSQL() documentation:

Execute a single SQL statement that is NOT a SELECT or any other SQL statement that returns data.

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