📄 resultsetwrapper.java
字号:
public void deleteRow() throws SQLException { rs.deleteRow(); } public void insertRow() throws SQLException { rs.insertRow(); } public void moveToCurrentRow() throws SQLException { rs.moveToCurrentRow(); } public void moveToInsertRow() throws SQLException { rs.moveToInsertRow(); } public void refreshRow() throws SQLException { rs.refreshRow(); } public void updateRow() throws SQLException { rs.updateRow(); } public boolean first() throws SQLException { return rs.first(); } public boolean isAfterLast() throws SQLException { return rs.isAfterLast(); } public boolean isBeforeFirst() throws SQLException { return rs.isBeforeFirst(); } public boolean isFirst() throws SQLException { return rs.isFirst(); } public boolean isLast() throws SQLException { return rs.isLast(); } public boolean last() throws SQLException { return rs.last(); } public boolean next() throws SQLException { return rs.next(); } public boolean previous() throws SQLException { return rs.previous(); } public boolean rowDeleted() throws SQLException { return rs.rowDeleted(); } public boolean rowInserted() throws SQLException { return rs.rowInserted(); } public boolean rowUpdated() throws SQLException { return rs.rowUpdated(); } public boolean wasNull() throws SQLException { return rs.wasNull(); } public byte getByte(int columnIndex) throws SQLException { return rs.getByte(columnIndex); } public double getDouble(int columnIndex) throws SQLException { return rs.getDouble(columnIndex); } public float getFloat(int columnIndex) throws SQLException { return rs.getFloat(columnIndex); } public int getInt(int columnIndex) throws SQLException { return rs.getInt(columnIndex); } public long getLong(int columnIndex) throws SQLException { return rs.getLong(columnIndex); } public short getShort(int columnIndex) throws SQLException { return rs.getShort(columnIndex); } public void setFetchDirection(int direction) throws SQLException { rs.setFetchDirection(direction); } public void setFetchSize(int rows) throws SQLException { rs.setFetchSize(rows); } public void updateNull(int columnIndex) throws SQLException { rs.updateNull(columnIndex); } public boolean absolute(int row) throws SQLException { return rs.absolute(row); } public boolean getBoolean(int columnIndex) throws SQLException { return rs.getBoolean(columnIndex); } public boolean relative(int rows) throws SQLException { return rs.relative(rows); } public byte[] getBytes(int columnIndex) throws SQLException { return rs.getBytes(columnIndex); } public void updateByte(int columnIndex, byte x) throws SQLException { rs.updateByte(columnIndex, x); } public void updateDouble(int columnIndex, double x) throws SQLException { rs.updateDouble(columnIndex, x); } public void updateFloat(int columnIndex, float x) throws SQLException { rs.updateFloat(columnIndex, x); } public void updateInt(int columnIndex, int x) throws SQLException { rs.updateInt(columnIndex, x); } public void updateLong(int columnIndex, long x) throws SQLException { rs.updateLong(columnIndex, x); } public void updateShort(int columnIndex, short x) throws SQLException { rs.updateShort(columnIndex, x); } public void updateBoolean(int columnIndex, boolean x) throws SQLException { rs.updateBoolean(columnIndex, x); } public void updateBytes(int columnIndex, byte[] x) throws SQLException { rs.updateBytes(columnIndex, x); } public InputStream getAsciiStream(int columnIndex) throws SQLException { return rs.getAsciiStream(columnIndex); } public InputStream getBinaryStream(int columnIndex) throws SQLException { return rs.getBinaryStream(columnIndex); } public InputStream getUnicodeStream(int columnIndex) throws SQLException { return rs.getUnicodeStream(columnIndex); } public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException { rs.updateAsciiStream(columnIndex, x, length); } public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException { rs.updateBinaryStream(columnIndex, x, length); } public Reader getCharacterStream(int columnIndex) throws SQLException { return rs.getCharacterStream(columnIndex); } public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException { rs.updateCharacterStream(columnIndex, x, length); } public Object getObject(int columnIndex) throws SQLException { return rs.getObject(columnIndex); } public void updateObject(int columnIndex, Object x) throws SQLException { rs.updateObject(columnIndex, x); } public void updateObject(int columnIndex, Object x, int scale) throws SQLException { rs.updateObject(columnIndex, x, scale); } public String getCursorName() throws SQLException { return rs.getCursorName(); } public String getString(int columnIndex) throws SQLException { return rs.getString(columnIndex); } public void updateString(int columnIndex, String x) throws SQLException { rs.updateString(columnIndex, x); } public BigDecimal getBigDecimal(int columnIndex) throws SQLException { return rs.getBigDecimal(columnIndex); } public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException { return rs.getBigDecimal(columnIndex, scale); } public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException { rs.updateBigDecimal(columnIndex, x); } public URL getURL(int columnIndex) throws SQLException { return rs.getURL(columnIndex); } public Array getArray(int columnIndex) throws SQLException { return rs.getArray(columnIndex); } public void updateArray(int columnIndex, Array x) throws SQLException { rs.updateArray(columnIndex, x); } public Blob getBlob(int columnIndex) throws SQLException { return rs.getBlob(columnIndex); } public void updateBlob(int columnIndex, Blob x) throws SQLException { rs.updateBlob(columnIndex, x); } public Clob getClob(int columnIndex) throws SQLException { return rs.getClob(columnIndex); } public void updateClob(int columnIndex, Clob x) throws SQLException { rs.updateClob(columnIndex, x); } public Date getDate(int columnIndex) throws SQLException { return rs.getDate(columnIndex); } public void updateDate(int columnIndex, Date x) throws SQLException { rs.updateDate(columnIndex, x); } public Ref getRef(int columnIndex) throws SQLException { return rs.getRef(columnIndex); } public void updateRef(int columnIndex, Ref x) throws SQLException { rs.updateRef(columnIndex, x); } public ResultSetMetaData getMetaData() throws SQLException { return rs.getMetaData(); } public SQLWarning getWarnings() throws SQLException { return rs.getWarnings(); } public Statement getStatement() throws SQLException { return rs.getStatement(); } public Time getTime(int columnIndex) throws SQLException { return rs.getTime(columnIndex); } public void updateTime(int columnIndex, Time x) throws SQLException { rs.updateTime(columnIndex, x); } public Timestamp getTimestamp(int columnIndex) throws SQLException { return rs.getTimestamp(columnIndex); } public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException { rs.updateTimestamp(columnIndex, x); } public Object getObject(int columnIndex, Map map) throws SQLException { return rs.getObject( columnIndex, map ); } public Date getDate(int columnIndex, Calendar cal) throws SQLException { return rs.getDate(columnIndex, cal); } public Time getTime(int columnIndex, Calendar cal) throws SQLException { return rs.getTime(columnIndex, cal); } public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { return rs.getTimestamp(columnIndex, cal); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -