I have an org.springframework.jdbc.object.StoredProcedure
which I am using to call a DB function. I want to be able to see the generated SQL. I am calling
org.springframework.jdbc.object.SqlCall.getCallString()
on my StoredProcedure object but this returns a String with ?
characters in place of the parameters. How can I get the complete SQL with the parameters included?