jdbcresultset.java

来自「Java写的含有一个jdbc驱动的小型数据库数据库引擎」· Java 代码 · 共 2,298 行 · 第 1/5 页

JAVA
2,298
字号
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateNull(int column) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace(column);
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateBoolean(int column, boolean x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateByte(int column, byte x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateShort(int column, short x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateInt(int column, int x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateLong(int column, long x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateFloat(int column, float x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateDouble(int column, double x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateBigDecimal(int column,
				 BigDecimal x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateString(int column, String x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateBytes(int column, byte[] x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateDate(int column, java.sql.Date x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateTime(int column, Time x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateTimestamp(int column, Timestamp x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     * @param length
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateAsciiStream(int column, InputStream x,
				  int length) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     * @param length
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateBinaryStream(int column, InputStream x,
				   int length) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     * @param length
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateCharacterStream(int column, Reader x,
				      int length) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     * @param scale
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateObject(int column, Object x,
			     int scale) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param column
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateObject(int column, Object x) throws SQLException {
	if (Trace.TRACE) {
	    Trace.trace();
	}

	throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param columnName
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateNull(String columnName) throws SQLException {
	updateNull(findColumn(columnName));
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param columnName
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateBoolean(String columnName,
			      boolean x) throws SQLException {
	updateBoolean(findColumn(columnName), x);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param columnName
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateByte(String columnName, byte x) throws SQLException {
	updateByte(findColumn(columnName), x);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param columnName
     * @param x
     *
     * @throws SQLException
     */
//#ifdef JAVA2

    public void updateShort(String columnName, short x) throws SQLException {
	updateShort(findColumn(columnName), x);
    }

//#endif JAVA2
    /**
     * Method declaration
     *
     *
     * @param columnName

⌨️ 快捷键说明

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