dev.jfr4jdbc.JfrResultSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfr4jdbc-driver Show documentation
Show all versions of jfr4jdbc-driver Show documentation
A JDBC wrapper driver recording JDK Flight Recorder events
package dev.jfr4jdbc;
import dev.jfr4jdbc.event.ResultSetEvent;
import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.*;
import java.util.Calendar;
import java.util.Map;
public class JfrResultSet implements ResultSet {
private final EventFactory factory;
private final ResultSet jdbcResultSet;
private final int resultSetId;
public JfrResultSet(ResultSet jdbcResultSet) {
this(jdbcResultSet, EventFactory.getDefaultEventFactory());
}
public JfrResultSet(ResultSet jdbcResultSet, EventFactory factory) {
super();
this.jdbcResultSet = jdbcResultSet;
this.resultSetId = System.identityHashCode(jdbcResultSet);
this.factory = factory;
}
@Override
public boolean next() throws SQLException {
ResultSetEvent event = factory.createResultSetEvent();
event.setResultSetId(this.resultSetId);
if (this.jdbcResultSet != null) {
event.setResultSetClass(this.jdbcResultSet.getClass());
Statement statement = this.jdbcResultSet.getStatement();
if (statement != null) {
event.setStatementId(System.identityHashCode(statement));
Connection con = statement.getConnection();
if (con != null) {
event.setConnectionId(System.identityHashCode(con));
}
}
}
boolean result = false;
SQLException exception = null;
event.begin();
try {
result = this.jdbcResultSet.next();
} catch (SQLException e) {
exception = e;
}
try {
event.setRowNo(this.jdbcResultSet.getRow());
} catch (SQLException e) {
}
event.commit();
if (exception != null) {
throw exception;
}
return result;
}
@Override
public void close() throws SQLException {
this.jdbcResultSet.close();
}
@Override
public T unwrap(Class iface) throws SQLException {
return this.jdbcResultSet.unwrap(iface);
}
@Override
public boolean isWrapperFor(Class> iface) throws SQLException {
return this.jdbcResultSet.isWrapperFor(iface);
}
@Override
public boolean wasNull() throws SQLException {
return this.jdbcResultSet.wasNull();
}
@Override
public String getString(int columnIndex) throws SQLException {
return this.jdbcResultSet.getString(columnIndex);
}
@Override
public boolean getBoolean(int columnIndex) throws SQLException {
return this.jdbcResultSet.getBoolean(columnIndex);
}
@Override
public byte getByte(int columnIndex) throws SQLException {
return this.jdbcResultSet.getByte(columnIndex);
}
@Override
public short getShort(int columnIndex) throws SQLException {
return this.jdbcResultSet.getShort(columnIndex);
}
@Override
public int getInt(int columnIndex) throws SQLException {
return this.jdbcResultSet.getInt(columnIndex);
}
@Override
public long getLong(int columnIndex) throws SQLException {
return this.jdbcResultSet.getLong(columnIndex);
}
@Override
public float getFloat(int columnIndex) throws SQLException {
return this.jdbcResultSet.getFloat(columnIndex);
}
@Override
public double getDouble(int columnIndex) throws SQLException {
return this.jdbcResultSet.getDouble(columnIndex);
}
@SuppressWarnings("deprecation")
@Override
public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
return this.jdbcResultSet.getBigDecimal(columnIndex, scale);
}
@Override
public byte[] getBytes(int columnIndex) throws SQLException {
return this.jdbcResultSet.getBytes(columnIndex);
}
@Override
public Date getDate(int columnIndex) throws SQLException {
return this.jdbcResultSet.getDate(columnIndex);
}
@Override
public Time getTime(int columnIndex) throws SQLException {
return this.jdbcResultSet.getTime(columnIndex);
}
@Override
public Timestamp getTimestamp(int columnIndex) throws SQLException {
return this.jdbcResultSet.getTimestamp(columnIndex);
}
@Override
public InputStream getAsciiStream(int columnIndex) throws SQLException {
return this.jdbcResultSet.getAsciiStream(columnIndex);
}
@SuppressWarnings("deprecation")
@Override
public InputStream getUnicodeStream(int columnIndex) throws SQLException {
return this.jdbcResultSet.getUnicodeStream(columnIndex);
}
@Override
public InputStream getBinaryStream(int columnIndex) throws SQLException {
return this.jdbcResultSet.getBinaryStream(columnIndex);
}
@Override
public String getString(String columnLabel) throws SQLException {
return this.jdbcResultSet.getString(columnLabel);
}
@Override
public boolean getBoolean(String columnLabel) throws SQLException {
return this.jdbcResultSet.getBoolean(columnLabel);
}
@Override
public byte getByte(String columnLabel) throws SQLException {
return this.jdbcResultSet.getByte(columnLabel);
}
@Override
public short getShort(String columnLabel) throws SQLException {
return this.jdbcResultSet.getShort(columnLabel);
}
@Override
public int getInt(String columnLabel) throws SQLException {
return this.jdbcResultSet.getInt(columnLabel);
}
@Override
public long getLong(String columnLabel) throws SQLException {
return this.jdbcResultSet.getLong(columnLabel);
}
@Override
public float getFloat(String columnLabel) throws SQLException {
return this.jdbcResultSet.getFloat(columnLabel);
}
@Override
public double getDouble(String columnLabel) throws SQLException {
return this.jdbcResultSet.getDouble(columnLabel);
}
@SuppressWarnings("deprecation")
@Override
public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {
return this.jdbcResultSet.getBigDecimal(columnLabel, scale);
}
@Override
public byte[] getBytes(String columnLabel) throws SQLException {
return this.jdbcResultSet.getBytes(columnLabel);
}
@Override
public Date getDate(String columnLabel) throws SQLException {
return this.jdbcResultSet.getDate(columnLabel);
}
@Override
public Time getTime(String columnLabel) throws SQLException {
return this.jdbcResultSet.getTime(columnLabel);
}
@Override
public Timestamp getTimestamp(String columnLabel) throws SQLException {
return this.jdbcResultSet.getTimestamp(columnLabel);
}
@Override
public InputStream getAsciiStream(String columnLabel) throws SQLException {
return this.jdbcResultSet.getAsciiStream(columnLabel);
}
@SuppressWarnings("deprecation")
@Override
public InputStream getUnicodeStream(String columnLabel) throws SQLException {
return this.jdbcResultSet.getUnicodeStream(columnLabel);
}
@Override
public InputStream getBinaryStream(String columnLabel) throws SQLException {
return this.jdbcResultSet.getBinaryStream(columnLabel);
}
@Override
public SQLWarning getWarnings() throws SQLException {
return this.jdbcResultSet.getWarnings();
}
@Override
public void clearWarnings() throws SQLException {
this.jdbcResultSet.clearWarnings();
}
@Override
public String getCursorName() throws SQLException {
return this.jdbcResultSet.getCursorName();
}
@Override
public ResultSetMetaData getMetaData() throws SQLException {
return this.jdbcResultSet.getMetaData();
}
@Override
public Object getObject(int columnIndex) throws SQLException {
return this.jdbcResultSet.getObject(columnIndex);
}
@Override
public Object getObject(String columnLabel) throws SQLException {
return this.jdbcResultSet.getObject(columnLabel);
}
@Override
public int findColumn(String columnLabel) throws SQLException {
return this.jdbcResultSet.findColumn(columnLabel);
}
@Override
public Reader getCharacterStream(int columnIndex) throws SQLException {
return this.jdbcResultSet.getCharacterStream(columnIndex);
}
@Override
public Reader getCharacterStream(String columnLabel) throws SQLException {
return this.jdbcResultSet.getCharacterStream(columnLabel);
}
@Override
public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
return this.jdbcResultSet.getBigDecimal(columnIndex);
}
@Override
public BigDecimal getBigDecimal(String columnLabel) throws SQLException {
return this.jdbcResultSet.getBigDecimal(columnLabel);
}
@Override
public boolean isBeforeFirst() throws SQLException {
return this.jdbcResultSet.isBeforeFirst();
}
@Override
public boolean isAfterLast() throws SQLException {
return this.jdbcResultSet.isAfterLast();
}
@Override
public boolean isFirst() throws SQLException {
return this.jdbcResultSet.isFirst();
}
@Override
public boolean isLast() throws SQLException {
return this.jdbcResultSet.isLast();
}
@Override
public void beforeFirst() throws SQLException {
this.jdbcResultSet.beforeFirst();
}
@Override
public void afterLast() throws SQLException {
this.jdbcResultSet.afterLast();
}
@Override
public boolean first() throws SQLException {
return this.jdbcResultSet.first();
}
@Override
public boolean last() throws SQLException {
return this.jdbcResultSet.last();
}
@Override
public int getRow() throws SQLException {
return this.jdbcResultSet.getRow();
}
@Override
public boolean absolute(int row) throws SQLException {
return this.jdbcResultSet.absolute(row);
}
@Override
public boolean relative(int rows) throws SQLException {
return this.jdbcResultSet.relative(rows);
}
@Override
public boolean previous() throws SQLException {
return this.jdbcResultSet.previous();
}
@Override
public void setFetchDirection(int direction) throws SQLException {
this.jdbcResultSet.setFetchDirection(direction);
}
@Override
public int getFetchDirection() throws SQLException {
return this.jdbcResultSet.getFetchDirection();
}
@Override
public void setFetchSize(int rows) throws SQLException {
this.jdbcResultSet.setFetchSize(rows);
}
@Override
public int getFetchSize() throws SQLException {
return this.jdbcResultSet.getFetchSize();
}
@Override
public int getType() throws SQLException {
return this.jdbcResultSet.getType();
}
@Override
public int getConcurrency() throws SQLException {
return this.jdbcResultSet.getConcurrency();
}
@Override
public boolean rowUpdated() throws SQLException {
return this.jdbcResultSet.rowUpdated();
}
@Override
public boolean rowInserted() throws SQLException {
return this.jdbcResultSet.rowInserted();
}
@Override
public boolean rowDeleted() throws SQLException {
return this.jdbcResultSet.rowDeleted();
}
@Override
public void updateNull(int columnIndex) throws SQLException {
this.jdbcResultSet.updateNull(columnIndex);
}
@Override
public void updateBoolean(int columnIndex, boolean x) throws SQLException {
this.jdbcResultSet.updateBoolean(columnIndex, x);
}
@Override
public void updateByte(int columnIndex, byte x) throws SQLException {
this.jdbcResultSet.updateByte(columnIndex, x);
}
@Override
public void updateShort(int columnIndex, short x) throws SQLException {
this.jdbcResultSet.updateShort(columnIndex, x);
}
@Override
public void updateInt(int columnIndex, int x) throws SQLException {
this.jdbcResultSet.updateInt(columnIndex, x);
}
@Override
public void updateLong(int columnIndex, long x) throws SQLException {
this.jdbcResultSet.updateLong(columnIndex, x);
}
@Override
public void updateFloat(int columnIndex, float x) throws SQLException {
this.jdbcResultSet.updateFloat(columnIndex, x);
}
@Override
public void updateDouble(int columnIndex, double x) throws SQLException {
this.jdbcResultSet.updateDouble(columnIndex, x);
}
@Override
public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
this.jdbcResultSet.updateBigDecimal(columnIndex, x);
}
@Override
public void updateString(int columnIndex, String x) throws SQLException {
this.jdbcResultSet.updateString(columnIndex, x);
}
@Override
public void updateBytes(int columnIndex, byte[] x) throws SQLException {
this.jdbcResultSet.updateBytes(columnIndex, x);
}
@Override
public void updateDate(int columnIndex, Date x) throws SQLException {
this.jdbcResultSet.updateDate(columnIndex, x);
}
@Override
public void updateTime(int columnIndex, Time x) throws SQLException {
this.jdbcResultSet.updateTime(columnIndex, x);
}
@Override
public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
this.jdbcResultSet.updateTimestamp(columnIndex, x);
}
@Override
public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
this.jdbcResultSet.updateAsciiStream(columnIndex, x, length);
}
@Override
public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
this.jdbcResultSet.updateBinaryStream(columnIndex, x, length);
}
@Override
public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
this.jdbcResultSet.updateCharacterStream(columnIndex, x, length);
}
@Override
public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {
this.jdbcResultSet.updateObject(columnIndex, x, scaleOrLength);
}
@Override
public void updateObject(int columnIndex, Object x) throws SQLException {
this.jdbcResultSet.updateObject(columnIndex, x);
}
@Override
public void updateNull(String columnLabel) throws SQLException {
this.jdbcResultSet.updateNull(columnLabel);
}
@Override
public void updateBoolean(String columnLabel, boolean x) throws SQLException {
this.jdbcResultSet.updateBoolean(columnLabel, x);
}
@Override
public void updateByte(String columnLabel, byte x) throws SQLException {
this.jdbcResultSet.updateByte(columnLabel, x);
}
@Override
public void updateShort(String columnLabel, short x) throws SQLException {
this.jdbcResultSet.updateShort(columnLabel, x);
}
@Override
public void updateInt(String columnLabel, int x) throws SQLException {
this.jdbcResultSet.updateInt(columnLabel, x);
}
@Override
public void updateLong(String columnLabel, long x) throws SQLException {
this.jdbcResultSet.updateLong(columnLabel, x);
}
@Override
public void updateFloat(String columnLabel, float x) throws SQLException {
this.jdbcResultSet.updateFloat(columnLabel, x);
}
@Override
public void updateDouble(String columnLabel, double x) throws SQLException {
this.jdbcResultSet.updateDouble(columnLabel, x);
}
@Override
public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {
this.jdbcResultSet.updateBigDecimal(columnLabel, x);
}
@Override
public void updateString(String columnLabel, String x) throws SQLException {
this.jdbcResultSet.updateString(columnLabel, x);
}
@Override
public void updateBytes(String columnLabel, byte[] x) throws SQLException {
this.jdbcResultSet.updateBytes(columnLabel, x);
}
@Override
public void updateDate(String columnLabel, Date x) throws SQLException {
this.jdbcResultSet.updateDate(columnLabel, x);
}
@Override
public void updateTime(String columnLabel, Time x) throws SQLException {
this.jdbcResultSet.updateTime(columnLabel, x);
}
@Override
public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {
this.jdbcResultSet.updateTimestamp(columnLabel, x);
}
@Override
public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {
this.jdbcResultSet.updateAsciiStream(columnLabel, x, length);
}
@Override
public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {
this.jdbcResultSet.updateBinaryStream(columnLabel, x, length);
}
@Override
public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {
this.jdbcResultSet.updateCharacterStream(columnLabel, reader, length);
}
@Override
public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException {
this.jdbcResultSet.updateObject(columnLabel, x, scaleOrLength);
}
@Override
public void updateObject(String columnLabel, Object x) throws SQLException {
this.jdbcResultSet.updateObject(columnLabel, x);
}
@Override
public void insertRow() throws SQLException {
this.jdbcResultSet.insertRow();
}
@Override
public void updateRow() throws SQLException {
this.jdbcResultSet.updateRow();
}
@Override
public void deleteRow() throws SQLException {
this.jdbcResultSet.deleteRow();
}
@Override
public void refreshRow() throws SQLException {
this.jdbcResultSet.refreshRow();
}
@Override
public void cancelRowUpdates() throws SQLException {
this.jdbcResultSet.cancelRowUpdates();
}
@Override
public void moveToInsertRow() throws SQLException {
this.jdbcResultSet.moveToInsertRow();
}
@Override
public void moveToCurrentRow() throws SQLException {
this.jdbcResultSet.moveToCurrentRow();
}
@Override
public Statement getStatement() throws SQLException {
return this.jdbcResultSet.getStatement();
}
@Override
public Object getObject(int columnIndex, Map> map) throws SQLException {
return this.jdbcResultSet.getObject(columnIndex, map);
}
@Override
public Ref getRef(int columnIndex) throws SQLException {
return this.jdbcResultSet.getRef(columnIndex);
}
@Override
public Blob getBlob(int columnIndex) throws SQLException {
return this.jdbcResultSet.getBlob(columnIndex);
}
@Override
public Clob getClob(int columnIndex) throws SQLException {
return this.jdbcResultSet.getClob(columnIndex);
}
@Override
public Array getArray(int columnIndex) throws SQLException {
return this.jdbcResultSet.getArray(columnIndex);
}
@Override
public Object getObject(String columnLabel, Map> map) throws SQLException {
return this.jdbcResultSet.getObject(columnLabel, map);
}
@Override
public Ref getRef(String columnLabel) throws SQLException {
return this.jdbcResultSet.getRef(columnLabel);
}
@Override
public Blob getBlob(String columnLabel) throws SQLException {
return this.jdbcResultSet.getBlob(columnLabel);
}
@Override
public Clob getClob(String columnLabel) throws SQLException {
return this.jdbcResultSet.getClob(columnLabel);
}
@Override
public Array getArray(String columnLabel) throws SQLException {
return this.jdbcResultSet.getArray(columnLabel);
}
@Override
public Date getDate(int columnIndex, Calendar cal) throws SQLException {
return this.jdbcResultSet.getDate(columnIndex, cal);
}
@Override
public Date getDate(String columnLabel, Calendar cal) throws SQLException {
return this.jdbcResultSet.getDate(columnLabel, cal);
}
@Override
public Time getTime(int columnIndex, Calendar cal) throws SQLException {
return this.jdbcResultSet.getTime(columnIndex, cal);
}
@Override
public Time getTime(String columnLabel, Calendar cal) throws SQLException {
return this.jdbcResultSet.getTime(columnLabel, cal);
}
@Override
public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
return this.jdbcResultSet.getTimestamp(columnIndex, cal);
}
@Override
public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {
return this.jdbcResultSet.getTimestamp(columnLabel, cal);
}
@Override
public URL getURL(int columnIndex) throws SQLException {
return this.jdbcResultSet.getURL(columnIndex);
}
@Override
public URL getURL(String columnLabel) throws SQLException {
return this.jdbcResultSet.getURL(columnLabel);
}
@Override
public void updateRef(int columnIndex, Ref x) throws SQLException {
this.jdbcResultSet.updateRef(columnIndex, x);
}
@Override
public void updateRef(String columnLabel, Ref x) throws SQLException {
this.jdbcResultSet.updateRef(columnLabel, x);
}
@Override
public void updateBlob(int columnIndex, Blob x) throws SQLException {
this.jdbcResultSet.updateBlob(columnIndex, x);
}
@Override
public void updateBlob(String columnLabel, Blob x) throws SQLException {
this.jdbcResultSet.updateBlob(columnLabel, x);
}
@Override
public void updateClob(int columnIndex, Clob x) throws SQLException {
this.jdbcResultSet.updateClob(columnIndex, x);
}
@Override
public void updateClob(String columnLabel, Clob x) throws SQLException {
this.jdbcResultSet.updateClob(columnLabel, x);
}
@Override
public void updateArray(int columnIndex, Array x) throws SQLException {
this.jdbcResultSet.updateArray(columnIndex, x);
}
@Override
public void updateArray(String columnLabel, Array x) throws SQLException {
this.jdbcResultSet.updateArray(columnLabel, x);
}
@Override
public RowId getRowId(int columnIndex) throws SQLException {
return this.jdbcResultSet.getRowId(columnIndex);
}
@Override
public RowId getRowId(String columnLabel) throws SQLException {
return this.jdbcResultSet.getRowId(columnLabel);
}
@Override
public void updateRowId(int columnIndex, RowId x) throws SQLException {
this.jdbcResultSet.updateRowId(columnIndex, x);
}
@Override
public void updateRowId(String columnLabel, RowId x) throws SQLException {
this.jdbcResultSet.updateRowId(columnLabel, x);
}
@Override
public int getHoldability() throws SQLException {
return this.jdbcResultSet.getHoldability();
}
@Override
public boolean isClosed() throws SQLException {
return this.jdbcResultSet.isClosed();
}
@Override
public void updateNString(int columnIndex, String nString) throws SQLException {
this.jdbcResultSet.updateNString(columnIndex, nString);
}
@Override
public void updateNString(String columnLabel, String nString) throws SQLException {
this.jdbcResultSet.updateNString(columnLabel, nString);
}
@Override
public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
this.jdbcResultSet.updateNClob(columnIndex, nClob);
}
@Override
public void updateNClob(String columnLabel, NClob nClob) throws SQLException {
this.jdbcResultSet.updateNClob(columnLabel, nClob);
}
@Override
public NClob getNClob(int columnIndex) throws SQLException {
return this.jdbcResultSet.getNClob(columnIndex);
}
@Override
public NClob getNClob(String columnLabel) throws SQLException {
return this.jdbcResultSet.getNClob(columnLabel);
}
@Override
public SQLXML getSQLXML(int columnIndex) throws SQLException {
return this.jdbcResultSet.getSQLXML(columnIndex);
}
@Override
public SQLXML getSQLXML(String columnLabel) throws SQLException {
return this.jdbcResultSet.getSQLXML(columnLabel);
}
@Override
public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
this.jdbcResultSet.updateSQLXML(columnIndex, xmlObject);
}
@Override
public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {
this.jdbcResultSet.updateSQLXML(columnLabel, xmlObject);
}
@Override
public String getNString(int columnIndex) throws SQLException {
return this.jdbcResultSet.getNString(columnIndex);
}
@Override
public String getNString(String columnLabel) throws SQLException {
return this.jdbcResultSet.getNString(columnLabel);
}
@Override
public Reader getNCharacterStream(int columnIndex) throws SQLException {
return this.jdbcResultSet.getNCharacterStream(columnIndex);
}
@Override
public Reader getNCharacterStream(String columnLabel) throws SQLException {
return this.jdbcResultSet.getNCharacterStream(columnLabel);
}
@Override
public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
this.jdbcResultSet.updateNCharacterStream(columnIndex, x, length);
}
@Override
public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
this.jdbcResultSet.updateNCharacterStream(columnLabel, reader, length);
}
@Override
public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
this.jdbcResultSet.updateAsciiStream(columnIndex, x, length);
}
@Override
public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
this.jdbcResultSet.updateBinaryStream(columnIndex, x, length);
}
@Override
public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
this.jdbcResultSet.updateCharacterStream(columnIndex, x, length);
}
@Override
public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {
this.jdbcResultSet.updateAsciiStream(columnLabel, x, length);
}
@Override
public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
this.jdbcResultSet.updateBinaryStream(columnLabel, x, length);
}
@Override
public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
this.jdbcResultSet.updateCharacterStream(columnLabel, reader, length);
}
@Override
public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
this.jdbcResultSet.updateBlob(columnIndex, inputStream, length);
}
@Override
public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {
this.jdbcResultSet.updateBlob(columnLabel, inputStream, length);
}
@Override
public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
this.jdbcResultSet.updateClob(columnIndex, reader, length);
}
@Override
public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {
this.jdbcResultSet.updateClob(columnLabel, reader, length);
}
@Override
public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
this.jdbcResultSet.updateNClob(columnIndex, reader, length);
}
@Override
public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {
this.jdbcResultSet.updateNClob(columnLabel, reader, length);
}
@Override
public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
this.jdbcResultSet.updateNCharacterStream(columnIndex, x);
}
@Override
public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {
this.jdbcResultSet.updateNCharacterStream(columnLabel, reader);
}
@Override
public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
this.jdbcResultSet.updateAsciiStream(columnIndex, x);
}
@Override
public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
this.jdbcResultSet.updateBinaryStream(columnIndex, x);
}
@Override
public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
this.jdbcResultSet.updateCharacterStream(columnIndex, x);
}
@Override
public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {
this.jdbcResultSet.updateAsciiStream(columnLabel, x);
}
@Override
public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {
this.jdbcResultSet.updateBinaryStream(columnLabel, x);
}
@Override
public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {
this.jdbcResultSet.updateCharacterStream(columnLabel, reader);
}
@Override
public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
this.jdbcResultSet.updateBlob(columnIndex, inputStream);
}
@Override
public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {
this.jdbcResultSet.updateBlob(columnLabel, inputStream);
}
@Override
public void updateClob(int columnIndex, Reader reader) throws SQLException {
this.jdbcResultSet.updateClob(columnIndex, reader);
}
@Override
public void updateClob(String columnLabel, Reader reader) throws SQLException {
this.jdbcResultSet.updateClob(columnLabel, reader);
}
@Override
public void updateNClob(int columnIndex, Reader reader) throws SQLException {
this.jdbcResultSet.updateNClob(columnIndex, reader);
}
@Override
public void updateNClob(String columnLabel, Reader reader) throws SQLException {
this.jdbcResultSet.updateNClob(columnLabel, reader);
}
@Override
public T getObject(int columnIndex, Class type) throws SQLException {
return this.jdbcResultSet.getObject(columnIndex, type);
}
@Override
public T getObject(String columnLabel, Class type) throws SQLException {
return this.jdbcResultSet.getObject(columnLabel, type);
}
@Override
public void updateObject(int columnIndex, Object x, SQLType targetSqlType, int scaleOrLength) throws SQLException {
this.jdbcResultSet.updateObject(columnIndex, x, targetSqlType, scaleOrLength);
}
@Override
public void updateObject(String columnLabel, Object x, SQLType targetSqlType, int scaleOrLength) throws SQLException {
this.jdbcResultSet.updateObject(columnLabel, x, targetSqlType, scaleOrLength);
}
@Override
public void updateObject(int columnIndex, Object x, SQLType targetSqlType) throws SQLException {
this.jdbcResultSet.updateObject(columnIndex, x, targetSqlType);
}
@Override
public void updateObject(String columnLabel, Object x, SQLType targetSqlType) throws SQLException {
this.jdbcResultSet.updateObject(columnLabel, x, targetSqlType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy