public Savepoint setSavepoint() throws SQLException { return m_wrappedConnection.setSavepoint(); } public Savepoint setSavepoint(String name) throws SQLException { return m_wrappedConnection.setSavepoint(name); } public void rollback(Savepoint savepoint) throws SQLException { m_wrappedConnection.rollback(savepoint); } public void releaseSavepoint(Savepoint savepoint) throws SQLException { m_wrappedConnection.releaseSavepoint(savepoint); } public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {