⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 updatablevtitemplate.java

📁 derby database source code.good for you.
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
 	 * @exception SQLException on unexpected JDBC error	 */	public void setByte(int parameterIndex, byte x) throws SQLException	{        throw new SQLException("setByte");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setShort(int parameterIndex, short x) throws SQLException	{        throw new SQLException("setShort");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setInt(int parameterIndex, int x) throws SQLException	{        throw new SQLException("setInt");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setLong(int parameterIndex, long x) throws SQLException	{        throw new SQLException("setLong");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setFloat(int parameterIndex, float x) throws SQLException	{        throw new SQLException("setFloat");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setDouble(int parameterIndex, double x) throws SQLException	{        throw new SQLException("setDouble");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException	{        throw new SQLException("setBigDecimal");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setString(int parameterIndex, String x) throws SQLException	{        throw new SQLException("setString");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setBytes(int parameterIndex, byte x[]) throws SQLException	{        throw new SQLException("setBytes");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setDate(int parameterIndex, Date x) throws SQLException	{        throw new SQLException("setDate");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setTime(int parameterIndex, Time x) throws SQLException	{        throw new SQLException("setTime");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException	{        throw new SQLException("setTimestamp");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException	{        throw new SQLException("setAsciiStream");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException	{        throw new SQLException("setUnicodeStream");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException	{        throw new SQLException("setBinaryStream");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void clearParameters() throws SQLException	{        throw new SQLException("clearParameters");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setObject(int parameterIndex, Object x, int targetJdbcType, int scale) throws SQLException	{        throw new SQLException("setObject");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setObject(int parameterIndex, Object x, int targetJdbcType) throws SQLException	{        throw new SQLException("setObject");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void setObject(int parameterIndex, Object x) throws SQLException	{        throw new SQLException("setObject");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public boolean execute() throws SQLException	{        throw new SQLException("execute");	}	/**	 * @see java.sql.PreparedStatement	 * 	 * @exception SQLException on unexpected JDBC error	 */	public ResultSetMetaData getMetaData() throws SQLException	{        throw new SQLException("ResultSetMetaData");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public int getResultSetType() throws SQLException {		throw new SQLException("getResultSetType");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public void setBlob(int i, Blob x) throws SQLException {		throw new SQLException("setBlob");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public void setFetchDirection(int direction) throws SQLException {		throw new SQLException("setFetchDirection");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public void setFetchSize(int rows) throws SQLException {		throw new SQLException("setFetchSize");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public void addBatch() throws SQLException {		throw new SQLException("addBatch");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public void setCharacterStream(int parameterIndex,									Reader reader,									int length) throws SQLException {		throw new SQLException("setCharacterStream");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public Connection getConnection() throws SQLException {		throw new SQLException("getConnection");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public int getFetchDirection() throws SQLException {		throw new SQLException("getFetchDirection");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public void setTime(int parameterIndex, Time x, Calendar cal)								throws SQLException {		throw new SQLException("setTime");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal)								throws SQLException {		throw new SQLException("setTimestamp");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public int getFetchSize() throws SQLException {		throw new SQLException("getFetchSize");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public void setRef(int i, Ref x) throws SQLException {		throw new SQLException("setRef");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public void setDate(int parameterIndex, Date x, Calendar cal)						throws SQLException {		throw new SQLException("setDate");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public void setClob(int i, Clob x) throws SQLException {		throw new SQLException("setClob");	}	/**	 * @see java.sql.PreparedStatement	 *	 * @exception SQLException		Always thrown	 */	public void setArray(int i, Array x) throws SQLException {		throw new SQLException("setArray");	}}

⌨️ 快捷键说明

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