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

📄 vtitemplate.java

📁 derby database source code.good for you.
💻 JAVA
📖 第 1 页 / 共 3 页
字号:
	public void updateDouble(String columnName, double x)					throws SQLException {		throw new SQLException("updateDouble");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateBigDecimal(String columnName, BigDecimal x)					throws SQLException {		throw new SQLException("updateBigDecimal");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateString(String columnName, String x)					throws SQLException {		throw new SQLException("updateString");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateBytes(String columnName, byte[] x)					throws SQLException {		throw new SQLException("updateBytes");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateDate(String columnName, java.sql.Date x)					throws SQLException {		throw new SQLException("updateDate");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateTime(String columnName, java.sql.Time x)					throws SQLException {		throw new SQLException("updateTime");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateTimestamp(String columnName, java.sql.Timestamp x)					throws SQLException {		throw new SQLException("updateTimestamp");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateAsciiStream(String columnName,							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(String columnName,							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(String columnName,							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(String columnName,							Object x,							int scale)					throws SQLException {		throw new SQLException("updateObject");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateObject(String columnName, Object x)					throws SQLException {		throw new SQLException("updateObject");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void insertRow()					throws SQLException {		throw new SQLException("insertRow");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateRow()					throws SQLException {		throw new SQLException("updateRow");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void deleteRow()					throws SQLException {		throw new SQLException("deleteRow");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void refreshRow()					throws SQLException {		throw new SQLException("refreshRow");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void cancelRowUpdates()					throws SQLException {		throw new SQLException("cancelRowUpdates");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void moveToInsertRow()					throws SQLException {		throw new SQLException("moveToInsertRow");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void moveToCurrentRow()					throws SQLException {		throw new SQLException("moveToCurrentRow");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public Statement getStatement()					throws SQLException {		throw new SQLException("getStatement");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public java.sql.Date getDate(int columnIndex, Calendar cal)					throws SQLException {		throw new SQLException("getDate");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public java.sql.Date getDate(String columnName, Calendar cal)					throws SQLException {		throw new SQLException("getDate");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public java.sql.Time getTime(int columnIndex, Calendar cal)					throws SQLException {		throw new SQLException("getTime");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public java.sql.Time getTime(String columnName, Calendar cal)					throws SQLException {		throw new SQLException("getTime");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public java.sql.Timestamp getTimestamp(int columnIndex, Calendar cal)					throws SQLException {		throw new SQLException("getTimestamp");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public java.sql.Timestamp getTimestamp(String columnName, Calendar cal)					throws SQLException {		throw new SQLException("getTimestamp");	}	/*	** JDBC 3.0 methods	*/		/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public URL getURL(int columnIndex)    throws SQLException	{		throw new SQLException("getURL");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public URL getURL(String columnName)					throws SQLException {		throw new SQLException("getURL");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public Object getObject(int i, java.util.Map map)					throws SQLException {		throw new SQLException("getObject");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public Ref getRef(int i)					throws SQLException {		throw new SQLException("getRef");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public Blob getBlob(int i)					throws SQLException {		throw new SQLException("getBlob");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public Clob getClob(int i)					throws SQLException {		throw new SQLException("getClob");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public Array getArray(int i)					throws SQLException {		throw new SQLException("getArray");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public Object getObject(String colName, java.util.Map map)					throws SQLException {		throw new SQLException("getObject");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public Ref getRef(String colName)					throws SQLException {		throw new SQLException("getRef");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public Blob getBlob(String colName)					throws SQLException {		throw new SQLException("getBlob");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public Clob getClob(String colName)					throws SQLException {		throw new SQLException("getClob");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public Array getArray(String colName)					throws SQLException {		throw new SQLException("getArray");	}	// JDBC 3.0 methods - not implemented	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateRef(int columnIndex, Ref x)					throws SQLException {		throw new SQLException("updateRef");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateRef(String columnName, Ref x)					throws SQLException {		throw new SQLException("updateRef");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateBlob(int columnIndex, Blob x)					throws SQLException {		throw new SQLException("updateBlob");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateBlob(String columnName, Blob x)					throws SQLException {		throw new SQLException("updateBlob");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateClob(int columnIndex, Clob x)					throws SQLException {		throw new SQLException("updateClob");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateClob(String columnName, Clob x)					throws SQLException {		throw new SQLException("updateClob");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateArray(int columnIndex, Array x)					throws SQLException {		throw new SQLException("updateArray");	}	/**	 * @see java.sql.ResultSet	 * 	 * @exception SQLException on unexpected JDBC error	 */	public void updateArray(String columnName, Array x)					throws SQLException {		throw new SQLException("updateArray");	}}

⌨️ 快捷键说明

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