亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? jdbc4resultset.java

?? 用于JAVA數據庫連接.解壓就可用,方便得很
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
	/**
	 * JDBC 4.0 Update a column with a character stream value. The updateXXX()
	 * methods are used to update column values in the current row, or the
	 * insert row. The updateXXX() methods do not update the underlying
	 * database, instead the updateRow() or insertRow() methods are called to
	 * update the database.
	 * 
	 * @param columnName
	 *            the name of the column
	 * @param reader
	 *            the stream to update the column with
	 * @param length
	 *            of the stream
	 * 
	 * @throws SQLException
	 *             if a database-access error occurs
	 */
	public void updateNCharacterStream(String columnName, Reader reader,
			int length) throws SQLException {
		updateNCharacterStream(findColumn(columnName), reader, length);
	}

	/**
	 * @see ResultSet#updateNClob(String, NClob)
	 */
	public void updateNClob(String columnName, NClob nClob) throws SQLException {
		updateNClob(findColumn(columnName), nClob);
	}
	
	public void updateRowId(int columnIndex, RowId x) throws SQLException {
		throw new NotUpdatable();
	}

	public void updateRowId(String columnName, RowId x) throws SQLException {
		updateRowId(findColumn(columnName), x);
	}

	public int getHoldability() throws SQLException {
		throw new NotYetImplementedException();
	}

	public RowId getRowId(int columnIndex) throws SQLException {
		throw new NotYetImplementedException();
	}

	public RowId getRowId(String columnLabel) throws SQLException {
		return getRowId(findColumn(columnLabel));
	}

	public SQLXML getSQLXML(int columnIndex) throws SQLException {
		checkColumnBounds(columnIndex);
		
		return new JDBC4MysqlSQLXML(this, columnIndex);
	}

	public SQLXML getSQLXML(String columnLabel) throws SQLException {
		return getSQLXML(findColumn(columnLabel));
	}

	public synchronized boolean isClosed() throws SQLException {
		return this.isClosed;
	}

	public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {
		updateAsciiStream(findColumn(columnLabel), x);
		
	}

	public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {
		updateAsciiStream(findColumn(columnLabel), x, length);
	}

	public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {
		updateBinaryStream(findColumn(columnLabel), x);
	}

	public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
		updateBinaryStream(findColumn(columnLabel), x, length);
	}

	public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
		throw new NotUpdatable();
	}

	public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {
		updateBlob(findColumn(columnLabel), inputStream);
	}

	public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {
		updateBlob(findColumn(columnLabel), inputStream, length);
	}

	public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {
		updateCharacterStream(findColumn(columnLabel), reader);
	}

	public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
		updateCharacterStream(findColumn(columnLabel), reader, length);
	}

	public void updateClob(int columnIndex, Reader reader) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateClob(String columnLabel, Reader reader) throws SQLException {
		updateClob(findColumn(columnLabel), reader);
	}

	public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {
		updateClob(findColumn(columnLabel), reader, length);
	}

	public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {
		updateNCharacterStream(findColumn(columnLabel), reader);
		
	}

	public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
		updateNCharacterStream(findColumn(columnLabel), reader, length);
	}

	public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateNClob(int columnIndex, Reader reader) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateNClob(String columnLabel, Reader reader) throws SQLException {
		updateNClob(findColumn(columnLabel), reader);
		
	}

	public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
		throw new NotUpdatable();
	}

	public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {
		updateNClob(findColumn(columnLabel), reader, length);
	}

	public void updateNString(int columnIndex, String nString) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateNString(String columnLabel, String nString) throws SQLException {
		updateNString(findColumn(columnLabel), nString);
	}

	public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
		throw new NotUpdatable();
		
	}

	public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {
		updateSQLXML(findColumn(columnLabel), xmlObject);
		
	}

	/**
     * Returns true if this either implements the interface argument or is directly or indirectly a wrapper
     * for an object that does. Returns false otherwise. If this implements the interface then return true,
     * else if this is a wrapper then return the result of recursively calling <code>isWrapperFor</code> on the wrapped
     * object. If this does not implement the interface and is not a wrapper, return false.
     * This method should be implemented as a low-cost operation compared to <code>unwrap</code> so that
     * callers can use this method to avoid expensive <code>unwrap</code> calls that may fail. If this method
     * returns true then calling <code>unwrap</code> with the same argument should succeed.
     *
     * @param interfaces a Class defining an interface.
     * @return true if this implements the interface or directly or indirectly wraps an object that does.
     * @throws java.sql.SQLException  if an error occurs while determining whether this is a wrapper
     * for an object with the given interface.
     * @since 1.6
     */
	public boolean isWrapperFor(Class<?> iface) throws SQLException {
		checkClosed();
		
		// This works for classes that aren't actually wrapping
		// anything
		return iface.isInstance(this);
	}

    /**
     * Returns an object that implements the given interface to allow access to non-standard methods,
     * or standard methods not exposed by the proxy.
     * The result may be either the object found to implement the interface or a proxy for that object.
     * If the receiver implements the interface then that is the object. If the receiver is a wrapper
     * and the wrapped object implements the interface then that is the object. Otherwise the object is
     *  the result of calling <code>unwrap</code> recursively on the wrapped object. If the receiver is not a
     * wrapper and does not implement the interface, then an <code>SQLException</code> is thrown.
     *
     * @param iface A Class defining an interface that the result must implement.
     * @return an object that implements the interface. May be a proxy for the actual implementing object.
     * @throws java.sql.SQLException If no object found that implements the interface 
     * @since 1.6
     */
    public <T> T unwrap(java.lang.Class<T> iface) throws java.sql.SQLException {
    	try {
    		// This works for classes that aren't actually wrapping
    		// anything
            return iface.cast(this);
        } catch (ClassCastException cce) {
            throw SQLError.createSQLException("Unable to unwrap to " + iface.toString(), 
            		SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
        }
    }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线免费av一区| 色综合久久九月婷婷色综合| 亚洲高清视频在线| 成人欧美一区二区三区在线播放| 91麻豆精品国产无毒不卡在线观看| 99re视频这里只有精品| 日韩理论片网站| ㊣最新国产の精品bt伙计久久| 亚洲与欧洲av电影| 日韩中文字幕av电影| 亚洲精品视频一区| 欧美日韩色综合| 色综合网色综合| 色先锋资源久久综合| 88在线观看91蜜桃国自产| 欧美成人bangbros| 日韩激情av在线| 一区二区三区精密机械公司| 国产精品国产三级国产普通话99 | 日韩免费在线观看| 国产偷v国产偷v亚洲高清| 在线观看视频一区二区| 色综合色狠狠综合色| 日本欧美韩国一区三区| 国产精品每日更新在线播放网址| 色94色欧美sute亚洲线路二 | 国产精品亚洲一区二区三区在线 | 日本道精品一区二区三区 | 国产精品日日摸夜夜摸av| 国产亚洲视频系列| 精品亚洲欧美一区| 亚洲国产视频一区| 精品动漫一区二区三区在线观看| 亚洲精品一区二区精华| 中文字幕制服丝袜成人av| 亚洲一区二区美女| 国产成人亚洲综合a∨婷婷| 91极品视觉盛宴| 欧美变态tickling挠脚心| 国产精品美女久久久久久| 亚洲电影一级黄| 国产一区日韩二区欧美三区| 91免费看片在线观看| 精品少妇一区二区三区日产乱码 | 久久久青草青青国产亚洲免观| 国产精品青草久久| 欧美aaaaaa午夜精品| 一本色道亚洲精品aⅴ| 亚洲精品在线一区二区| 亚洲综合久久久| 粉嫩aⅴ一区二区三区四区五区| 欧美精品vⅰdeose4hd| 国产精品欧美一级免费| 久久精品国产澳门| 911精品国产一区二区在线| 亚洲精品高清在线观看| 成人高清视频免费观看| 久久免费视频色| 裸体歌舞表演一区二区| 欧美浪妇xxxx高跟鞋交| 亚洲黄一区二区三区| 波多野结衣91| 中文字幕精品在线不卡| 国产精品亚洲人在线观看| 日韩精品一区国产麻豆| 亚洲福利电影网| 亚洲一区二区三区小说| 国产精品18久久久久| 欧美va在线播放| 偷拍与自拍一区| 制服.丝袜.亚洲.中文.综合| 亚洲免费在线电影| 不卡欧美aaaaa| 中文字幕中文字幕一区二区| 风间由美一区二区三区在线观看| 久久综合久久久久88| 精品亚洲免费视频| 精品免费99久久| 青青草伊人久久| 欧美视频在线观看一区| 亚洲一区二区综合| 欧美日韩在线亚洲一区蜜芽| 亚洲国产综合人成综合网站| 欧美性受xxxx黑人xyx性爽| 亚洲一区在线播放| 欧美精品日日鲁夜夜添| 麻豆久久久久久| 国产亚洲欧美一区在线观看| 久久精品国产一区二区三区免费看| 7777精品伊人久久久大香线蕉完整版| 丝袜亚洲另类欧美| 日韩午夜av电影| 国产成人免费网站| ...xxx性欧美| 91精品国产入口在线| 激情丁香综合五月| 最新欧美精品一区二区三区| 色呦呦日韩精品| 日本不卡一区二区三区高清视频| 精品久久一区二区三区| 国产**成人网毛片九色| 亚洲精品ww久久久久久p站| 欧美日韩在线观看一区二区| 久久99国产乱子伦精品免费| 久久久精品中文字幕麻豆发布| 99久久精品免费| 午夜视黄欧洲亚洲| 久久久亚洲欧洲日产国码αv| 91色porny在线视频| 日本欧美加勒比视频| 国产三级欧美三级日产三级99| 成人亚洲一区二区一| 午夜婷婷国产麻豆精品| 国产色综合久久| 欧美亚洲国产一卡| 国产毛片一区二区| 性久久久久久久久久久久| 欧美国产日韩在线观看| 日本韩国一区二区三区视频| 久草在线在线精品观看| 一区二区三区日韩在线观看| 日韩欧美国产1| 在线视频国内一区二区| 国产成人亚洲综合a∨婷婷| 天天爽夜夜爽夜夜爽精品视频| 亚洲精品在线一区二区| 欧美四级电影在线观看| 不卡的看片网站| 麻豆91在线播放免费| 亚洲最快最全在线视频| 中文字幕在线观看一区| 精品91自产拍在线观看一区| 欧美高清一级片在线| 91香蕉视频在线| 国产**成人网毛片九色 | 成人v精品蜜桃久久一区| 久久精品噜噜噜成人av农村| 亚洲成人第一页| 一区二区三区国产精品| 中文字幕亚洲一区二区va在线| 久久免费电影网| 精品av久久707| 精品国产sm最大网站| 9191成人精品久久| 337p亚洲精品色噜噜噜| 欧美欧美欧美欧美首页| 色av成人天堂桃色av| 色综合欧美在线| 在线观看日韩国产| 91久久国产综合久久| 一本色道综合亚洲| 欧洲国产伦久久久久久久| 91捆绑美女网站| 91成人免费网站| 欧美影院一区二区三区| 欧美日韩在线直播| 在线播放视频一区| 欧美一级片在线| 日韩欧美高清在线| 2020国产成人综合网| 国产欧美日韩一区二区三区在线观看| 国产日韩精品一区二区三区在线| 337p粉嫩大胆噜噜噜噜噜91av | av亚洲精华国产精华精| 97精品久久久午夜一区二区三区| 91免费看`日韩一区二区| 在线中文字幕不卡| 4438x成人网最大色成网站| 欧美一区二区高清| 国产亚洲精品中文字幕| 中文字幕色av一区二区三区| 一区二区三区中文在线观看| 亚洲成人你懂的| 麻豆精品蜜桃视频网站| 国产成人精品亚洲午夜麻豆| 波多野结衣精品在线| 欧美嫩在线观看| 精品国产伦一区二区三区免费| 欧美激情资源网| 亚洲免费观看在线观看| 蜜臂av日日欢夜夜爽一区| 懂色av中文字幕一区二区三区 | 国产精品自拍在线| 91在线观看美女| 日韩一区二区在线看| 国产区在线观看成人精品 | 日韩欧美一级二级| 国产三级欧美三级日产三级99 | 激情图区综合网| 91丨九色porny丨蝌蚪| 91精品国产一区二区三区蜜臀| 久久久不卡网国产精品二区| 亚洲码国产岛国毛片在线| 另类小说综合欧美亚洲| 色偷偷久久一区二区三区| 精品久久国产97色综合| 综合久久综合久久| 狠狠色综合播放一区二区| 日本乱码高清不卡字幕| 久久久国产精品午夜一区ai换脸|