📄 vtitemplate.java
字号:
* @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public boolean isAfterLast() throws SQLException { throw new SQLException("isAfterLast"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public boolean isFirst() throws SQLException { throw new SQLException("isFirst"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public boolean isLast() throws SQLException { throw new SQLException("isLast"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void beforeFirst() throws SQLException { throw new SQLException("beforeFirst"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void afterLast() throws SQLException { throw new SQLException("afterLast"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public boolean first() throws SQLException { throw new SQLException("first"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public boolean last() throws SQLException { throw new SQLException("last"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public int getRow() throws SQLException { throw new SQLException("getRow"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public boolean absolute(int row) throws SQLException { throw new SQLException("absolute"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public boolean relative(int rows) throws SQLException { throw new SQLException("relative"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public boolean previous() throws SQLException { throw new SQLException("previous"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void setFetchDirection(int direction) throws SQLException { throw new SQLException("setFetchDirection"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public int getFetchDirection() throws SQLException { throw new SQLException("getFetchDirection"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void setFetchSize(int rows) throws SQLException { throw new SQLException("setFetchSize"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public int getFetchSize() throws SQLException { throw new SQLException("getFetchSize"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public int getType() throws SQLException { throw new SQLException("getType"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public int getConcurrency() throws SQLException { throw new SQLException("getConcurrency"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public boolean rowUpdated() throws SQLException { throw new SQLException("rowUpdated"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public boolean rowInserted() throws SQLException { throw new SQLException("rowInserted"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public boolean rowDeleted() throws SQLException { throw new SQLException("rowDeleted"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateNull(int columnIndex) throws SQLException { throw new SQLException("updateNull"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateBoolean(int columnIndex, boolean x) throws SQLException { throw new SQLException("updateBoolean"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateByte(int columnIndex, byte x) throws SQLException { throw new SQLException("updateByte"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateShort(int columnIndex, short x) throws SQLException { throw new SQLException("updateShort"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateInt(int columnIndex, int x) throws SQLException { throw new SQLException("updateInt"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateLong(int columnIndex, long x) throws SQLException { throw new SQLException("updateLong"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateFloat(int columnIndex, float x) throws SQLException { throw new SQLException("updateFloat"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateDouble(int columnIndex, double x) throws SQLException { throw new SQLException("updateDouble"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException { throw new SQLException("updateBigDecimal"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateString(int columnIndex, String x) throws SQLException { throw new SQLException("updateString"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateBytes(int columnIndex, byte[] x) throws SQLException { throw new SQLException("updateBytes"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateDate(int columnIndex, java.sql.Date x) throws SQLException { throw new SQLException("updateDate"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateTime(int columnIndex, java.sql.Time x) throws SQLException { throw new SQLException("updateTime"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateTimestamp(int columnIndex, java.sql.Timestamp x) throws SQLException { throw new SQLException("updateTimestamp"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateAsciiStream(int columnIndex, java.io.InputStream x, int length) throws SQLException { throw new SQLException("updateAsciiStream"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateBinaryStream(int columnIndex, java.io.InputStream x, int length) throws SQLException { throw new SQLException("updateBinaryStream"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateCharacterStream(int columnIndex, java.io.Reader x, int length) throws SQLException { throw new SQLException("updateCharacterStream"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateObject(int columnIndex, Object x, int scale) throws SQLException { throw new SQLException("updateObject"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateObject(int columnIndex, Object x) throws SQLException { throw new SQLException("updateObject"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateNull(String columnName) throws SQLException { throw new SQLException("updateNull"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateBoolean(String columnName, boolean x) throws SQLException { throw new SQLException("updateBoolean"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateByte(String columnName, byte x) throws SQLException { throw new SQLException("updateByte"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateShort(String columnName, short x) throws SQLException { throw new SQLException("updateShort"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateInt(String columnName, int x) throws SQLException { throw new SQLException("updateInt"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateLong(String columnName, long x) throws SQLException { throw new SQLException("updateLong"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error */ public void updateFloat(String columnName, float x) throws SQLException { throw new SQLException("updateFloat"); } /** * @see java.sql.ResultSet * * @exception SQLException on unexpected JDBC error
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -