PreparedStatement Debug Question
I have been having a problem with a PreparedStatement not executing correctly and I wanted to get into the guts of the PreparedStatement object (SerialPreparedStatement) actually.
I have been searching through the members of this object in the Eclipse debugger and I can't seem to find the parameters that I set in the object.
Does anybody have any idea where to look in the actual SerialPreparedStatement object to get to the parameters? (Eg. stmt.setString(1, "Hello") Where can I find the string Hello or the collection object that contains it?
Thanks!

