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

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

?? updatableresultset.java

?? 基于java的oa系統
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
     * update the database.     *     * @param columnName the name of the column     * @param x the new column value     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateBytes(String columnName, byte[] x)        throws SQLException {        updateBytes(findColumn(columnName), x);    }    /**     * JDBC 2.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 columnIndex the first column is 1, the second is 2, ...     * @param x the new column value     * @param length the length of the stream     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateCharacterStream(int columnIndex,        java.io.Reader x, int length) throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setCharacterStream(columnIndex, x, length);        } else {            inserter.setCharacterStream(columnIndex, x, length);            if (x == null) {                this.thisRow[columnIndex - 1] = null;            } else {                this.thisRow[columnIndex - 1] = STREAM_DATA_MARKER;            }        }    }    /**     * JDBC 2.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 new column value     * @param length of the stream     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateCharacterStream(String columnName,        java.io.Reader reader, int length) throws SQLException {        updateCharacterStream(findColumn(columnName), reader, length);    }    	/**	  * @see ResultSet#updateClob(int, Clob)	  */	 public void updateClob(int columnIndex, java.sql.Clob clob) throws SQLException {	 	 if (clob == null) {	 	 	updateNull(columnIndex);	 	 } else {	 	 	updateCharacterStream(columnIndex, clob.getCharacterStream(), (int) clob.length());	 	 }	 }    /**     * JDBC 2.0  Update a column with a Date 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 columnIndex the first column is 1, the second is 2, ...     * @param x the new column value     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateDate(int columnIndex, java.sql.Date x)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setDate(columnIndex, x);        } else {            inserter.setDate(columnIndex, x);            this.thisRow[columnIndex - 1] = this.inserter.getBytes(columnIndex                    - 1);        }    }    /**     * JDBC 2.0  Update a column with a Date 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 x the new column value     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateDate(String columnName, java.sql.Date x)        throws SQLException {        updateDate(findColumn(columnName), x);    }    /**     * JDBC 2.0  Update a column with a Double 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 columnIndex the first column is 1, the second is 2, ...     * @param x the new column value     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateDouble(int columnIndex, double x)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setDouble(columnIndex, x);        } else {            inserter.setDouble(columnIndex, x);            this.thisRow[columnIndex - 1] = this.inserter.getBytes(columnIndex                    - 1);        }    }    /**     * JDBC 2.0  Update a column with a double 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 x the new column value     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateDouble(String columnName, double x)        throws SQLException {        updateDouble(findColumn(columnName), x);    }    /**     * JDBC 2.0  Update a column with a float 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 columnIndex the first column is 1, the second is 2, ...     * @param x the new column value     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateFloat(int columnIndex, float x)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setFloat(columnIndex, x);        } else {            inserter.setFloat(columnIndex, x);            this.thisRow[columnIndex - 1] = this.inserter.getBytes(columnIndex                    - 1);        }    }    /**     * JDBC 2.0  Update a column with a float 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 x the new column value     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateFloat(String columnName, float x)        throws SQLException {        updateFloat(findColumn(columnName), x);    }    /**     * JDBC 2.0  Update a column with an integer 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 columnIndex the first column is 1, the second is 2, ...     * @param x the new column value     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateInt(int columnIndex, int x)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setInt(columnIndex, x);        } else {            inserter.setInt(columnIndex, x);            this.thisRow[columnIndex - 1] = this.inserter.getBytes(columnIndex                    - 1);        }    }    /**     * JDBC 2.0  Update a column with an integer 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 x the new column value     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateInt(String columnName, int x)        throws SQLException {        updateInt(findColumn(columnName), x);    }    /**     * JDBC 2.0  Update a column with a long 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 columnIndex the first column is 1, the second is 2, ...     * @param x the new column value     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateLong(int columnIndex, long x)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setLong(columnIndex, x);        } else {            inserter.setLong(columnIndex, x);            this.thisRow[columnIndex - 1] = this.inserter.getBytes(columnIndex                    - 1);        }    }    /**     * JDBC 2.0  Update a column with a long 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 x the new column value     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateLong(String columnName, long x)        throws SQLException {        updateLong(findColumn(columnName), x);    }    /**     * JDBC 2.0  Give a nullable column a null 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 columnIndex the first column is 1, the second is 2, ...     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateNull(int columnIndex)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setNull(columnIndex, 0);        } else {            inserter.setNull(columnIndex, 0);            this.thisRow[columnIndex - 1] = null;        }    }    /**     * JDBC 2.0  Update a column with a null 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     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateNull(String columnName)        throws SQLException {        updateNull(findColumn(columnName));    }    /**     * JDBC 2.0  Update a column with an Object 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 columnIndex the first column is 1, the second is 2, ...     * @param x the new column value     * @param scale For java.sql.Types.DECIMAL or java.sql.Types.NUMERIC types     *        this is the number of digits after the decimal.  For all other     *        types this value will be ignored.     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateObject(int columnIndex, Object x, int scale)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setObject(columnIndex, x);        } else {            inserter.setObject(columnIndex, x);            this.thisRow[columnIndex - 1] = this.inserter.getBytes(columnIndex                    - 1);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人午夜精品5599| 日韩欧美一区电影| 欧美一区二区三区免费大片| 国产日韩欧美精品电影三级在线| 亚洲精品欧美综合四区| 国产三级精品视频| 日韩免费电影网站| 亚洲黄色录像片| 成人激情免费视频| 日韩精品一区二区三区视频在线观看| 久久久精品黄色| 久久精品国产一区二区三区免费看| 成人一道本在线| 久久欧美一区二区| 蜜桃久久精品一区二区| 欧美日韩一区二区在线视频| 亚洲欧美综合在线精品| 国产成人在线色| 亚洲欧洲成人自拍| 国产综合色在线视频区| 日韩视频在线一区二区| 天堂久久久久va久久久久| 色综合一区二区三区| 国产精品萝li| 国产99精品国产| 国产拍欧美日韩视频二区| 国产乱人伦偷精品视频不卡| 精品三级在线看| 国产在线视视频有精品| 精品国产电影一区二区| 精品一区二区三区蜜桃| 欧美一区二区三区爱爱| 免费成人美女在线观看.| 欧美一区二区福利在线| 琪琪一区二区三区| 精品国产精品一区二区夜夜嗨| 精品一区二区三区的国产在线播放| 欧美高清hd18日本| 日韩精品福利网| 一本久久精品一区二区| 一区二区三区欧美亚洲| 色中色一区二区| 午夜久久久影院| 日韩一级视频免费观看在线| 久久精品国产精品亚洲精品| 久久久久国产精品厨房| 高清不卡一二三区| 亚洲三级小视频| 欧美日韩国产美女| 蜜桃视频免费观看一区| 久久精品人人做人人综合| 成人毛片老司机大片| 最好看的中文字幕久久| 岛国av在线一区| 一区二区三区日韩欧美精品| 欧美精品电影在线播放| 国产精品系列在线播放| 亚洲欧洲国产日本综合| 欧美精品乱码久久久久久按摩| 国产偷国产偷亚洲高清人白洁| 国产精品久久久久久久久晋中 | 99久久99久久免费精品蜜臀| 日韩欧美一区在线| 亚洲成人精品一区| 在线精品视频小说1| 中文字幕中文乱码欧美一区二区 | 日本一区二区综合亚洲| 国产中文一区二区三区| 在线电影国产精品| 亚洲一区二区在线免费看| 91丨九色丨蝌蚪富婆spa| 国产精品欧美极品| 99re成人精品视频| 亚洲精品一二三四区| 99精品欧美一区二区蜜桃免费| 中文字幕免费不卡| 国产精品白丝jk黑袜喷水| 国产午夜精品一区二区| 成人手机在线视频| 国产精品乱人伦中文| 99精品一区二区| 亚洲欧美一区二区不卡| 在线欧美一区二区| 亚洲一二三区在线观看| 91麻豆精品国产91久久久久久 | 日韩一级免费一区| 九九视频精品免费| 久久精品视频网| 91在线国内视频| 亚洲韩国一区二区三区| 欧美丰满美乳xxx高潮www| 免费看欧美美女黄的网站| 久久影院视频免费| www.日韩av| 日韩精品视频网站| 久久老女人爱爱| 97成人超碰视| 日日骚欧美日韩| 国产婷婷色一区二区三区四区| 成人午夜免费视频| 亚洲bt欧美bt精品| 国产亚洲精久久久久久| 色999日韩国产欧美一区二区| 视频一区视频二区中文| 国产亚洲成av人在线观看导航| 91免费版在线| 美女高潮久久久| 亚洲区小说区图片区qvod| 日韩欧美国产午夜精品| 91在线精品一区二区三区| 久久精品理论片| 亚洲欧美自拍偷拍色图| 日韩精品自拍偷拍| 在线观看国产精品网站| 韩国女主播一区| 亚洲成a人v欧美综合天堂| 久久久久久久久蜜桃| 欧美日韩在线免费视频| 国产成人精品一区二| 青青草国产成人av片免费| 亚洲天堂福利av| 久久久久久久综合日本| 欧美精品tushy高清| 99久久精品免费看国产 | 成人久久18免费网站麻豆| 欧美a级理论片| 亚洲精品日韩专区silk| 国产精品欧美一区喷水| 欧美xxxxxxxxx| 欧美视频在线不卡| 97成人超碰视| 成人在线综合网| 国内精品视频666| 免费观看日韩电影| 亚洲国产精品麻豆| 悠悠色在线精品| 日韩美女视频一区二区| 国产日韩影视精品| 欧美videos中文字幕| 欧美日韩一区小说| 91视频xxxx| 不卡视频在线观看| 成人久久18免费网站麻豆| 国产精品一二三四| 紧缚奴在线一区二区三区| 美日韩一区二区| 日本不卡视频在线观看| 亚洲成人午夜电影| 午夜视黄欧洲亚洲| 亚洲成人精品一区二区| 午夜欧美大尺度福利影院在线看| 亚洲免费资源在线播放| 一区二区三区在线免费| 亚洲激情男女视频| 亚洲第一搞黄网站| 日韩综合一区二区| 久久疯狂做爰流白浆xx| 麻豆视频一区二区| 国内国产精品久久| 粉嫩av一区二区三区粉嫩| 丁香另类激情小说| 99re亚洲国产精品| 欧美日韩亚洲丝袜制服| 91精品在线观看入口| 日韩视频在线你懂得| 精品少妇一区二区三区视频免付费| 精品欧美乱码久久久久久1区2区| 日韩免费观看2025年上映的电影 | 91在线观看成人| 在线日韩av片| 日韩亚洲欧美成人一区| 久久亚洲精精品中文字幕早川悠里 | 久久综合综合久久综合| 国产精一品亚洲二区在线视频| 国产91在线观看丝袜| 色婷婷香蕉在线一区二区| 欧美肥胖老妇做爰| 日本一区二区三区在线不卡| 亚洲日本丝袜连裤袜办公室| 午夜精品福利一区二区三区av| 麻豆精品久久精品色综合| 成人一二三区视频| 在线不卡一区二区| 国产日韩精品一区二区三区| 一区二区三区免费观看| 精品一区二区影视| 色综合久久88色综合天天免费| 91.麻豆视频| 综合久久一区二区三区| 日本不卡视频一二三区| thepron国产精品| 91精品国产色综合久久不卡电影 | 久久夜色精品国产欧美乱极品| 亚洲欧美另类小说| 激情五月婷婷综合网| 色婷婷综合久久久久中文一区二区 | 在线亚洲高清视频| 国产亚洲欧美日韩在线一区| 性久久久久久久久| 99精品视频在线观看|