TimeSpy rsSpy = new TimeSpy() { protected Boolean run() throws Exception { return resultSet.next(); } }; TimeSpy statementSpy = new TimeSpy() { protected Boolean run() throws Exception { return statement.execute(); } }; TimeSpy commitSpy = new TimeSpy() { protected Boolean run() throws Exception { connection.commit(); return true; } };