* @param statement Statement that is to be wrapped<br>
*/
public StatementWrapper(Connection con, Statement statement) {
connection = con;
jdbcStatement = statement;
executor = new MethodExecutor();
//Start leak tracing if statement is a pure Statement & stmtWrapping is ON
//Check if this is an instanceof PS/CS. There could exist
//a CustomStatement class in a jdbc driver that implements PS/CS as well
//as Statement
if(!(this instanceof PreparedStatement) &&