// This file is machine generated from emcore/utl/CreateWrapper.java. Please donot modify!!! package oracle.sysman.jdbc.wrapper; public class OracleStatementWrapper implements oracle.jdbc.OracleStatement { private oracle.jdbc.OracleStatement wrappedObject; public OracleStatementWrapper(oracle.jdbc.OracleStatement w) { wrappedObject = w; } public void clearDefines() throws java.sql.SQLException { wrappedObject.clearDefines(); } public void defineColumnType(int arg0, int arg1) throws java.sql.SQLException { wrappedObject.defineColumnType(arg0, arg1); } public void defineColumnType(int arg0, int arg1, int arg2) throws java.sql.SQLException { wrappedObject.defineColumnType(arg0, arg1, arg2); } public void defineColumnType(int arg0, int arg1, int arg2, short arg3) throws java.sql.SQLException { wrappedObject.defineColumnType(arg0, arg1, arg2, arg3); } public void defineColumnType(int arg0, int arg1, java.lang.String arg2) throws java.sql.SQLException { wrappedObject.defineColumnType(arg0, arg1, arg2); } public void defineColumnTypeBytes(int arg0, int arg1, int arg2) throws java.sql.SQLException { wrappedObject.defineColumnTypeBytes(arg0, arg1, arg2); } public void defineColumnTypeChars(int arg0, int arg1, int arg2) throws java.sql.SQLException { wrappedObject.defineColumnTypeChars(arg0, arg1, arg2); } public int getRowPrefetch() { return wrappedObject.getRowPrefetch(); } public void setResultSetCache(oracle.jdbc.OracleResultSetCache arg0) throws java.sql.SQLException { wrappedObject.setResultSetCache(arg0); } public void setRowPrefetch(int arg0) throws java.sql.SQLException { wrappedObject.setRowPrefetch(arg0); } public void closeWithKey(java.lang.String arg0) throws java.sql.SQLException { wrappedObject.closeWithKey(arg0); } public int creationState() { return wrappedObject.creationState(); } public boolean isNCHAR(int arg0) throws java.sql.SQLException { return wrappedObject.isNCHAR(arg0); } public void setDatabaseChangeRegistration(oracle.jdbc.dcn.DatabaseChangeRegistration arg0) throws java.sql.SQLException { wrappedObject.setDatabaseChangeRegistration(arg0); } public java.lang.String[] getRegisteredTableNames() throws java.sql.SQLException { return wrappedObject.getRegisteredTableNames(); } public long getRegisteredQueryId() throws java.sql.SQLException { return wrappedObject.getRegisteredQueryId(); } public void close() throws java.sql.SQLException { wrappedObject.close(); } public boolean execute(java.lang.String arg0) throws java.sql.SQLException { return wrappedObject.execute(arg0); } public boolean execute(java.lang.String arg0, int arg1) throws java.sql.SQLException { return wrappedObject.execute(arg0, arg1); } public boolean execute(java.lang.String arg0, int[] arg1) throws java.sql.SQLException { return wrappedObject.execute(arg0, arg1); } public boolean execute(java.lang.String arg0, java.lang.String[] arg1) throws java.sql.SQLException { return wrappedObject.execute(arg0, arg1); } public void addBatch(java.lang.String arg0) throws java.sql.SQLException { wrappedObject.addBatch(arg0); } public void cancel() throws java.sql.SQLException { wrappedObject.cancel(); } public void clearBatch() throws java.sql.SQLException { wrappedObject.clearBatch(); } public void clearWarnings() throws java.sql.SQLException { wrappedObject.clearWarnings(); } public int[] executeBatch() throws java.sql.SQLException { return wrappedObject.executeBatch(); } public java.sql.ResultSet executeQuery(java.lang.String arg0) throws java.sql.SQLException { return wrappedObject.executeQuery(arg0); } public int executeUpdate(java.lang.String arg0) throws java.sql.SQLException { return wrappedObject.executeUpdate(arg0); } public int executeUpdate(java.lang.String arg0, int arg1) throws java.sql.SQLException { return wrappedObject.executeUpdate(arg0, arg1); } public int executeUpdate(java.lang.String arg0, int[] arg1) throws java.sql.SQLException { return wrappedObject.executeUpdate(arg0, arg1); } public int executeUpdate(java.lang.String arg0, java.lang.String[] arg1) throws java.sql.SQLException { return wrappedObject.executeUpdate(arg0, arg1); } public java.sql.Connection getConnection() throws java.sql.SQLException { return wrappedObject.getConnection(); } public int getFetchDirection() throws java.sql.SQLException { return wrappedObject.getFetchDirection(); } public int getFetchSize() throws java.sql.SQLException { return wrappedObject.getFetchSize(); } public java.sql.ResultSet getGeneratedKeys() throws java.sql.SQLException { return wrappedObject.getGeneratedKeys(); } public int getMaxFieldSize() throws java.sql.SQLException { return wrappedObject.getMaxFieldSize(); } public int getMaxRows() throws java.sql.SQLException { return wrappedObject.getMaxRows(); } public boolean getMoreResults() throws java.sql.SQLException { return wrappedObject.getMoreResults(); } public boolean getMoreResults(int arg0) throws java.sql.SQLException { return wrappedObject.getMoreResults(arg0); } public int getQueryTimeout() throws java.sql.SQLException { return wrappedObject.getQueryTimeout(); } public java.sql.ResultSet getResultSet() throws java.sql.SQLException { return wrappedObject.getResultSet(); } public int getResultSetConcurrency() throws java.sql.SQLException { return wrappedObject.getResultSetConcurrency(); } public int getResultSetHoldability() throws java.sql.SQLException { return wrappedObject.getResultSetHoldability(); } public int getResultSetType() throws java.sql.SQLException { return wrappedObject.getResultSetType(); } public int getUpdateCount() throws java.sql.SQLException { return wrappedObject.getUpdateCount(); } public java.sql.SQLWarning getWarnings() throws java.sql.SQLException { return wrappedObject.getWarnings(); } public void setCursorName(java.lang.String arg0) throws java.sql.SQLException { wrappedObject.setCursorName(arg0); } public void setEscapeProcessing(boolean arg0) throws java.sql.SQLException { wrappedObject.setEscapeProcessing(arg0); } public void setFetchDirection(int arg0) throws java.sql.SQLException { wrappedObject.setFetchDirection(arg0); } public void setFetchSize(int arg0) throws java.sql.SQLException { wrappedObject.setFetchSize(arg0); } public void setMaxFieldSize(int arg0) throws java.sql.SQLException { wrappedObject.setMaxFieldSize(arg0); } public void setMaxRows(int arg0) throws java.sql.SQLException { wrappedObject.setMaxRows(arg0); } public void setQueryTimeout(int arg0) throws java.sql.SQLException { wrappedObject.setQueryTimeout(arg0); } }