这个 SQLite 查询有什么问题?
c=MyDB.rawQuery("SELECT Distance FROM " +
Table1 + "WHERE Source = '" + source + "' AND Distance = " +
distance + " ' ", null);
distance = c.getFloat(c.getColumnIndex("Distance"));
c=MyDB.rawQuery("SELECT Distance FROM " +
Table1 + "WHERE Source = '" + source + "' AND Distance = " +
distance + " ' ", null);
distance = c.getFloat(c.getColumnIndex("Distance"));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请注意
WHERE
关键字之前的空格以及 Distance = 后面的“ ' ”。另外,最好不要使用 rawQuery,而是使用查询方法,因为它使用 准备好的声明,这样更安全。
Pay attention to the space before
WHERE
keyword and " ' " after Distance = .Also, better to use not rawQuery, but query method, as it use prepared statement, which is more safe.
您在距离值之前缺少一个撇号,在表名称之后缺少一个空格。
然而,这种构建查询的方式使您容易受到 SQL 注入攻击。相反,请使用正确的参数。如何执行此操作将记录在您正在使用的库中。
You're missing an apostrophe before the distance value, and a space after the table name.
However, this way of constructing queries makes you prone to SQL injection attacks. Instead, use proper parameters. How to do this will be documented in the library you are using.