callablestatementwrapper.java

来自「RESIN 3.2 最新源码」· Java 代码 · 共 2,278 行 · 第 1/4 页

JAVA
2,278
字号
    }  }  public SQLWarning getWarnings()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getWarnings();    }    finally {      profiler.finish();    }  }  public void clearWarnings()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.clearWarnings();    }    finally {      profiler.finish();    }  }  public void setCursorName(String name)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setCursorName(name);    }    finally {      profiler.finish();    }  }  public boolean execute(String sql)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.execute(sql);    }    finally {      profiler.finish();    }  }  public ResultSet getResultSet()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getResultSet();    }    finally {      profiler.finish();    }  }  public int getUpdateCount()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getUpdateCount();    }    finally {      profiler.finish();    }  }  public boolean getMoreResults()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getMoreResults();    }    finally {      profiler.finish();    }  }  public void setFetchDirection(int direction)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setFetchDirection(direction);    }    finally {      profiler.finish();    }  }  public int getFetchDirection()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getFetchDirection();    }    finally {      profiler.finish();    }  }  public void setFetchSize(int rows)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setFetchSize(rows);    }    finally {      profiler.finish();    }  }  public int getFetchSize()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getFetchSize();    }    finally {      profiler.finish();    }  }  public int getResultSetConcurrency()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getResultSetConcurrency();    }    finally {      profiler.finish();    }  }  public int getResultSetType()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getResultSetType();    }    finally {      profiler.finish();    }  }  public void addBatch(String sql)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.addBatch(sql);    }    finally {      profiler.finish();    }  }  public void clearBatch()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.clearBatch();    }    finally {      profiler.finish();    }  }  public int[] executeBatch()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.executeBatch();    }    finally {      profiler.finish();    }  }  public Connection getConnection()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getConnection();    }    finally {      profiler.finish();    }  }  public boolean getMoreResults(int current)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getMoreResults(current);    }    finally {      profiler.finish();    }  }  public ResultSet getGeneratedKeys()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getGeneratedKeys();    }    finally {      profiler.finish();    }  }  public int executeUpdate(String sql, int autoGeneratedKeys)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.executeUpdate(sql, autoGeneratedKeys);    }    finally {      profiler.finish();    }  }  public int executeUpdate(String sql, int[] columnIndexes)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.executeUpdate(sql, columnIndexes);    }    finally {      profiler.finish();    }  }  public int executeUpdate(String sql, String[] columnNames)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.executeUpdate(sql, columnNames);    }    finally {      profiler.finish();    }  }  public boolean execute(String sql, int autoGeneratedKeys)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.execute(sql, autoGeneratedKeys);    }    finally {      profiler.finish();    }  }  public boolean execute(String sql, int[] columnIndexes)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.execute(sql, columnIndexes);    }    finally {      profiler.finish();    }  }  public boolean execute(String sql, String[] columnNames)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.execute(sql, columnNames);    }    finally {      profiler.finish();    }  }  public int getResultSetHoldability()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getResultSetHoldability();    }    finally {      profiler.finish();    }  }  public String toString()  {    return "CallableStatementWrapper[" + _profilerPoint.getName() + "]";  }    public RowId getRowId(int parameterIndex) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public RowId getRowId(String parameterName) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setRowId(String parameterName, RowId x) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNString(String parameterName, String value) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNClob(String parameterName, NClob value) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setClob(String parameterName, Reader reader, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNClob(String parameterName, Reader reader, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public NClob getNClob(int parameterIndex) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public NClob getNClob(String parameterName) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public SQLXML getSQLXML(int parameterIndex) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public SQLXML getSQLXML(String parameterName) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public String getNString(int parameterIndex) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public String getNString(String parameterName) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public Reader getNCharacterStream(int parameterIndex) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public Reader getNCharacterStream(String parameterName) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public Reader getCharacterStream(int parameterIndex) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public Reader getCharacterStream(String parameterName) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setBlob(String parameterName, Blob x) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setClob(String parameterName, Clob x) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setAsciiStream(String parameterName, InputStream x, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setBinaryStream(String parameterName, InputStream x, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setCharacterStream(String parameterName, Reader reader, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setAsciiStream(String parameterName, InputStream x) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setBinaryStream(String parameterName, InputStream x) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setCharacterStream(String parameterName, Reader reader) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNCharacterStream(String parameterName, Reader value) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setClob(String parameterName, Reader reader) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setBlob(String parameterName, InputStream inputStream) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNClob(String parameterName, Reader reader) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setRowId(int parameterIndex, RowId x) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNString(int parameterIndex, String value) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNClob(int parameterIndex, NClob value) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setClob(int parameterIndex, Reader reader, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setCharacterStream(int parameterIndex, Reader reader, long length) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setClob(int parameterIndex, Reader reader) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setNClob(int parameterIndex, Reader reader) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public boolean isClosed() throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public void setPoolable(boolean poolable) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public boolean isPoolable() throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public <T> T unwrap(Class<T> iface) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }    public boolean isWrapperFor(Class<?> iface) throws SQLException {        throw new UnsupportedOperationException("Not supported yet.");    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?