这个 SQLite 查询有什么问题?

发布于 2024-11-02 16:12:22 字数 234 浏览 0 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

远山浅 2024-11-09 16:12:22
c=MyDB.rawQuery("SELECT Distance FROM " + Table1 + " WHERE Source = '" + source + "' AND Distance = '" + distance + " ' ", null);

请注意 WHERE 关键字之前的空格以及 Distance = 后面的“ ' ”。
另外,最好不要使用 rawQuery,而是使用查询方法,因为它使用 准备好的声明,这样更安全。

c=MyDB.rawQuery("SELECT Distance FROM " + Table1 + " WHERE Source = '" + source + "' AND Distance = '" + distance + " ' ", null);

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.

我很OK 2024-11-09 16:12:22

您在距离值之前缺少一个撇号,在表名称之后缺少一个空格。

然而,这种构建查询的方式使您容易受到 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.

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