gpt4 book ai didi

android - 从数据库sqlite中获取信息

转载 作者:太空宇宙 更新时间:2023-11-03 12:01:33 25 4
gpt4 key购买 nike

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

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

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

最佳答案

如果您的 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;
}

关于android - 从数据库sqlite中获取信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5498203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com