问题描述
- 获得经过PreparedStatement设置参数的完整SQL语句
-
普通JDBC过程。
在写SQL之后。用PreparedStatement设置的参数。
如select * from table where id = ?
PreparedStatement.setInt(1,1);那么真正的SQL就变成了select * form table where id = 1;
我如何在代码中获得经过ps设置参数之后的完整的可直接在数据库运行的SQL语句。
解决方案
这个不可以的 的你是PreparedStatement 预编译 http://www.iteye.com/problems/32029
解决方案二:
用LOG4j可以实现http://www.cnblogs.com/xdp-gacl/p/4081848.html
时间: 2024-09-18 03:27:39