打印Android SQLiteOpenHelper生成的语句

发布于 2024-11-19 00:31:58 字数 213 浏览 8 评论 0原文

我有一个更新语句无法正常工作,并且想知道最终语句是什么样的。有没有办法打印出Android SQLiteOpenHelper生成的语句?

到目前为止,我设法通过单步执行堆栈跟踪来获取未填充的语句:

UPDATE banks SET fav=? WHERE code = ? AND name = ?

未填充的语句的语法是正确的。

I have an update statement that does not work properly and want to know how the final statement looks like. Is there a way to print out the statements generated by the Android SQLiteOpenHelper?

So far I managed to get a hold of the unpopulated statement by stepping through the stacktrace:

UPDATE banks SET fav=? WHERE code = ? AND name = ?

The syntax of the unpopulated statement is correct.

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

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

发布评论

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

评论(1

演多会厌 2024-11-26 00:31:58

除了SQLiteOpenHelper。您可以使用返回字符串的 buildQuery() 方法来获取查询语句的输出,并使用返回游标的 query() 方法来运行一个查询。

You might want to try to use a SQLiteQueryBuilder in addition to the SQLiteOpenHelper. You can use the buildQuery() method, which returns a string, to get the output of the query statement and the query() method, which returns a cursor, to run a query.

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