如何打印SimpleJdbcTemplate最终执行的SQL
我正在使用 Spring 框架中的 SimpleJdbcTemplate 类以预准备语句(问号)的格式执行 SQL 查询。特别是,我正在调用 queryForInt(String sql, Object... args) 方法。
有没有办法打印出最终的构造查询?
I am using SimpleJdbcTemplate class from Spring framework to execute SQL queries in a format of prepared statement (question marks). In particular, I am calling queryForInt(String sql, Object... args) method.
Is there any way to print out the final constructed query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“构造的”查询甚至可能不是一个有效的概念。并非所有驱动程序都通过在客户端插入参数来实现占位符。
The "constructed" query might not even be a valid concept. Not all drivers implement placeholders by interpolating parameters client-side.