从数据库sqlite获取信息
如何从数据库中获取信息。我想执行这一行
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的 ID 是整数数据类型,请尝试此操作。
如果您的 ID 是字符串数据类型,请尝试此操作。
Please try this if your id is integer datatype.
Pease try this if your id is String datatype.
这应该是最简单的方法(未经测试,但您应该明白)。
看起来你也不知道 android 如何处理数据库访问,所以我建议至少看看 光标类。
execSQL()
文档: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: