resultsetwrapper.java
来自「RESIN 3.2 最新源码」· Java 代码 · 共 2,041 行 · 第 1/3 页
JAVA
2,041 行
finally { profiler.finish(); } } public void updateObject(String columnName, Object x, int scale) throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.updateObject(columnName, x, scale); } finally { profiler.finish(); } } public void updateObject(String columnName, Object x) throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.updateObject(columnName, x); } finally { profiler.finish(); } } public void insertRow() throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.insertRow(); } finally { profiler.finish(); } } public void updateRow() throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.updateRow(); } finally { profiler.finish(); } } public void deleteRow() throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.deleteRow(); } finally { profiler.finish(); } } public void refreshRow() throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.refreshRow(); } finally { profiler.finish(); } } public void cancelRowUpdates() throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.cancelRowUpdates(); } finally { profiler.finish(); } } public void moveToInsertRow() throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.moveToInsertRow(); } finally { profiler.finish(); } } public void moveToCurrentRow() throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.moveToCurrentRow(); } finally { profiler.finish(); } } public Statement getStatement() throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getStatement(); } finally { profiler.finish(); } } public Object getObject(int i, Map<String, Class<?>> map) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getObject(i, map); } finally { profiler.finish(); } } public Ref getRef(int i) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getRef(i); } finally { profiler.finish(); } } public Blob getBlob(int i) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getBlob(i); } finally { profiler.finish(); } } public Clob getClob(int i) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getClob(i); } finally { profiler.finish(); } } public Array getArray(int i) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getArray(i); } finally { profiler.finish(); } } public Object getObject(String colName, Map<String, Class<?>> map) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getObject(colName, map); } finally { profiler.finish(); } } public Ref getRef(String colName) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getRef(colName); } finally { profiler.finish(); } } public Blob getBlob(String colName) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getBlob(colName); } finally { profiler.finish(); } } public Clob getClob(String colName) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getClob(colName); } finally { profiler.finish(); } } public Array getArray(String colName) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getArray(colName); } finally { profiler.finish(); } } public Date getDate(int columnIndex, Calendar cal) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getDate(columnIndex, cal); } finally { profiler.finish(); } } public Date getDate(String columnName, Calendar cal) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getDate(columnName, cal); } finally { profiler.finish(); } } public Time getTime(int columnIndex, Calendar cal) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getTime(columnIndex, cal); } finally { profiler.finish(); } } public Time getTime(String columnName, Calendar cal) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getTime(columnName, cal); } finally { profiler.finish(); } } public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getTimestamp(columnIndex, cal); } finally { profiler.finish(); } } public Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getTimestamp(columnName, cal); } finally { profiler.finish(); } } public URL getURL(int columnIndex) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getURL(columnIndex); } finally { profiler.finish(); } } public URL getURL(String columnName) throws SQLException { Profiler profiler = _profilerPoint.start(); try { return _resultSet.getURL(columnName); } finally { profiler.finish(); } } public void updateRef(int columnIndex, Ref x) throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.updateRef(columnIndex, x); } finally { profiler.finish(); } } public void updateRef(String columnName, Ref x) throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.updateRef(columnName, x); } finally { profiler.finish(); } } public void updateBlob(int columnIndex, Blob x) throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.updateBlob(columnIndex, x); } finally { profiler.finish(); } } public void updateBlob(String columnName, Blob x) throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.updateBlob(columnName, x); } finally { profiler.finish(); } } public void updateClob(int columnIndex, Clob x) throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.updateClob(columnIndex, x); } finally { profiler.finish(); } } public void updateClob(String columnName, Clob x) throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.updateClob(columnName, x); } finally { profiler.finish(); } } public void updateArray(int columnIndex, Array x) throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.updateArray(columnIndex, x); } finally { profiler.finish(); } } public void updateArray(String columnName, Array x) throws SQLException { Profiler profiler = _profilerPoint.start(); try { _resultSet.updateArray(columnName, x); } finally { profiler.finish(); } } public String toString() { return "ResultSetWrapper[" + _profilerPoint.getName() + "]"; } public RowId getRowId(int columnIndex) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public RowId getRowId(String columnLabel) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateRowId(int columnIndex, RowId x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateRowId(String columnLabel, RowId x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public int getHoldability() throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public boolean isClosed() throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNString(int columnIndex, String nString) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNString(String columnLabel, String nString) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNClob(int columnIndex, NClob nClob) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNClob(String columnLabel, NClob nClob) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public NClob getNClob(int columnIndex) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public NClob getNClob(String columnLabel) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public SQLXML getSQLXML(int columnIndex) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public SQLXML getSQLXML(String columnLabel) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public String getNString(int columnIndex) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public String getNString(String columnLabel) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public Reader getNCharacterStream(int columnIndex) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public Reader getNCharacterStream(String columnLabel) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateClob(int columnIndex, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateClob(String columnLabel, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateCharacterStream(int columnIndex, Reader x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateClob(int columnIndex, Reader reader) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateClob(String columnLabel, Reader reader) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNClob(int columnIndex, Reader reader) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void updateNClob(String columnLabel, Reader reader) 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 + -
显示快捷键?