simpleresultset.java

来自「非常棒的java数据库」· Java 代码 · 共 1,994 行 · 第 1/4 页

JAVA
1,994
字号
     * INTERNAL 
     */
    public boolean rowUpdated() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void setFetchDirection(int direction) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void setFetchSize(int rows) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateNull(int columnIndex) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public boolean absolute(int row) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public boolean relative(int rows) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateByte(int columnIndex, byte x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateDouble(int columnIndex, double x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateFloat(int columnIndex, float x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateInt(int columnIndex, int x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateLong(int columnIndex, long x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateShort(int columnIndex, short x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateBoolean(int columnIndex, boolean x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateBytes(int columnIndex, byte[] x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public InputStream getAsciiStream(int columnIndex) throws SQLException {
        return null;
    }

    /** 
     * INTERNAL 
     */
    public InputStream getBinaryStream(int columnIndex) throws SQLException {
        return null;
    }

    /** 
     * @deprecated INTERNAL 
     */
    public InputStream getUnicodeStream(int columnIndex) throws SQLException {
        return null;
    }

    /** 
     * INTERNAL 
     */
    public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public Reader getCharacterStream(int columnIndex) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateObject(int columnIndex, Object x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateObject(int columnIndex, Object x, int scale) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public String getCursorName() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateString(int columnIndex, String x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateByte(String columnName, byte x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateDouble(String columnName, double x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateFloat(String columnName, float x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateInt(String columnName, int x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateLong(String columnName, long x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateShort(String columnName, short x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateBoolean(String columnName, boolean x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateBytes(String columnName, byte[] x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * @deprecated INTERNAL 
     */
    public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public URL getURL(int columnIndex) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateArray(int columnIndex, Array x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public Blob getBlob(int i) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateBlob(int columnIndex, Blob x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public Clob getClob(int i) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateClob(int columnIndex, Clob x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateDate(int columnIndex, Date x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public Ref getRef(int i) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateRef(int columnIndex, Ref x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateTime(int columnIndex, Time x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public InputStream getAsciiStream(String columnName) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public InputStream getBinaryStream(String columnName) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * @deprecated INTERNAL 
     */
    public InputStream getUnicodeStream(String columnName) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateAsciiStream(String columnName, InputStream x, int length) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateBinaryStream(String columnName, InputStream x, int length) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public Reader getCharacterStream(String columnName) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateCharacterStream(String columnName, Reader reader, int length) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateObject(String columnName, Object x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateObject(String columnName, Object x, int scale) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public Object getObject(int i, Map map) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateString(String columnName, String x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * @deprecated INTERNAL 
     */
    public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public URL getURL(String columnName) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateArray(String columnName, Array x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public Blob getBlob(String colName) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateBlob(String columnName, Blob x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public Clob getClob(String colName) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateClob(String columnName, Clob x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateDate(String columnName, Date x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public Date getDate(int columnIndex, Calendar cal) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public Ref getRef(String colName) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateRef(String columnName, Ref x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateTime(String columnName, Time x) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public Time getTime(int columnIndex, Calendar cal) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */

⌨️ 快捷键说明

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