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

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

?? updatableresultset.java

?? 基于java的oa系統
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
     * </p>     *      * <p>     * Note: Calling relative(1) is different than calling next() since is     * makes sense to call next() when there is no current row, for example,     * when the cursor is positioned before the first row or after the last     * row of the result set.     * </p>     *     * @param rows DOCUMENT ME!     *     * @return true if on a row, false otherwise.     *     * @exception SQLException if a database-access error occurs, or there is     *            no current row, or result set type is TYPE_FORWARD_ONLY.     */    public synchronized boolean relative(int rows) throws SQLException {        return super.relative(rows);    }    /**     * JDBC 2.0 Determine if this row has been deleted.  A deleted row may     * leave a visible "hole" in a result set.  This method can be used to     * detect holes in a result set.  The value returned depends on whether or     * not the result set can detect deletions.     *     * @return true if deleted and deletes are detected     *     * @exception SQLException if a database-access error occurs     * @throws NotImplemented DOCUMENT ME!     *     * @see DatabaseMetaData#deletesAreDetected     */    public synchronized boolean rowDeleted() throws SQLException {        throw new NotImplemented();    }    /**     * JDBC 2.0 Determine if the current row has been inserted.  The value     * returned  depends on whether or not the result set can detect visible     * inserts.     *     * @return true if inserted and inserts are detected     *     * @exception SQLException if a database-access error occurs     * @throws NotImplemented DOCUMENT ME!     *     * @see DatabaseMetaData#insertsAreDetected     */    public synchronized boolean rowInserted() throws SQLException {        throw new NotImplemented();    }    //---------------------------------------------------------------------    // Updates    //---------------------------------------------------------------------    /**     * JDBC 2.0 Determine if the current row has been updated.  The value     * returned  depends on whether or not the result set can detect updates.     *     * @return true if the row has been visibly updated by the owner or     *         another, and updates are detected     *     * @exception SQLException if a database-access error occurs     * @throws NotImplemented DOCUMENT ME!     *     * @see DatabaseMetaData#updatesAreDetected     */    public synchronized boolean rowUpdated() throws SQLException {        throw new NotImplemented();    }    /**     * JDBC 2.0  Update a column with an ascii 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 updateAsciiStream(int columnIndex,        java.io.InputStream x, int length) throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setAsciiStream(columnIndex, x, length);        } else {            inserter.setAsciiStream(columnIndex, x, length);            this.thisRow[columnIndex - 1] = STREAM_DATA_MARKER;        }    }    /**     * JDBC 2.0  Update a column with an ascii 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 x the new column value     * @param length of the stream     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateAsciiStream(String columnName,        java.io.InputStream x, int length) throws SQLException {        updateAsciiStream(findColumn(columnName), x, length);    }    /**     * JDBC 2.0  Update a column with a BigDecimal 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 updateBigDecimal(int columnIndex, BigDecimal x)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setBigDecimal(columnIndex, x);        } else {            inserter.setBigDecimal(columnIndex, x);            if (x == null) {                this.thisRow[columnIndex - 1] = null;            } else {                this.thisRow[columnIndex - 1] = x.toString().getBytes();            }        }    }    /**     * JDBC 2.0  Update a column with a BigDecimal 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 updateBigDecimal(String columnName, BigDecimal x)        throws SQLException {        updateBigDecimal(findColumn(columnName), x);    }    /**     * JDBC 2.0  Update a column with a binary 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 updateBinaryStream(int columnIndex,        java.io.InputStream x, int length) throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setBinaryStream(columnIndex, x, length);        } else {            inserter.setBinaryStream(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 binary 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 x the new column value     * @param length of the stream     *     * @exception SQLException if a database-access error occurs     */    public synchronized void updateBinaryStream(String columnName,        java.io.InputStream x, int length) throws SQLException {        updateBinaryStream(findColumn(columnName), x, length);    }    /**     * @see ResultSet#updateBlob(int, Blob)     */    public synchronized void updateBlob(int columnIndex, java.sql.Blob blob)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setBlob(columnIndex, blob);        } else {            inserter.setBlob(columnIndex, blob);            if (blob == null) {                this.thisRow[columnIndex - 1] = null;            } else {                this.thisRow[columnIndex - 1] = STREAM_DATA_MARKER;            }        }    }    /**     * @see ResultSet#updateBlob(String, Blob)     */    public void updateBlob(String columnName, java.sql.Blob blob)        throws SQLException {        updateBlob(findColumn(columnName), blob);    }    /**     * JDBC 2.0  Update a column with a boolean 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 updateBoolean(int columnIndex, boolean x)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setBoolean(columnIndex, x);        } else {            inserter.setBoolean(columnIndex, x);            this.thisRow[columnIndex - 1] = inserter.getBytes(1);        }    }    /**     * JDBC 2.0  Update a column with a boolean 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 updateBoolean(String columnName, boolean x)        throws SQLException {        updateBoolean(findColumn(columnName), x);    }    /**     * JDBC 2.0  Update a column with a byte 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 updateByte(int columnIndex, byte x)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setByte(columnIndex, x);        } else {            inserter.setByte(columnIndex, x);            this.thisRow[columnIndex - 1] = inserter.getBytes(columnIndex - 1);        }    }    /**     * JDBC 2.0  Update a column with a byte 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 updateByte(String columnName, byte x)        throws SQLException {        updateByte(findColumn(columnName), x);    }    /**     * JDBC 2.0  Update a column with a byte array 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 updateBytes(int columnIndex, byte[] x)        throws SQLException {        if (!onInsertRow) {            if (!doingUpdates) {                doingUpdates = true;                syncUpdate();            }            updater.setBytes(columnIndex, x);        } else {            inserter.setBytes(columnIndex, x);            this.thisRow[columnIndex - 1] = x;        }    }    /**     * JDBC 2.0  Update a column with a byte array 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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免播放器亚洲一区| 亚洲日本一区二区| 99久久精品免费看国产免费软件| 免费精品视频在线| 蜜桃久久久久久| 裸体在线国模精品偷拍| 日日摸夜夜添夜夜添国产精品| 亚洲毛片av在线| 亚洲精品大片www| 一区二区三区美女| 亚洲一级在线观看| 香蕉久久夜色精品国产使用方法| 亚洲制服欧美中文字幕中文字幕| 尤物视频一区二区| 亚洲一区二区不卡免费| 亚洲一区二区三区四区五区中文| 一区二区国产盗摄色噜噜| 亚洲一区在线视频| 日本午夜精品视频在线观看| 久久成人久久爱| 国产一区二区三区黄视频| 国产高清亚洲一区| 色偷偷88欧美精品久久久| 欧美理论片在线| 精品噜噜噜噜久久久久久久久试看 | 麻豆成人免费电影| 久久99国产精品尤物| 国产成人免费视频网站高清观看视频| 国产精品456| 色综合久久中文字幕综合网 | 欧美亚洲丝袜传媒另类| 精品视频在线免费| 久久色视频免费观看| 国产精品你懂的在线| 一区二区激情视频| 国产一区二区三区四区五区美女| 国产不卡在线一区| 欧美日韩国产精选| 久久精品免费在线观看| 亚洲欧美日韩在线播放| 麻豆精品一区二区| bt欧美亚洲午夜电影天堂| 欧美日韩一区小说| 中文字幕av不卡| 日韩高清不卡在线| 91在线视频免费91| 日韩欧美综合一区| 一区二区三区精品在线观看| 久久不见久久见免费视频7| 91蜜桃视频在线| 精品国产91乱码一区二区三区 | 亚洲国产日韩一区二区| 黄色资源网久久资源365| 色婷婷av一区二区三区gif| 久久久亚洲午夜电影| 日韩高清国产一区在线| 91免费在线播放| 337p粉嫩大胆噜噜噜噜噜91av| 亚洲一区免费观看| 99久久精品99国产精品| 精品裸体舞一区二区三区| 午夜成人免费视频| 欧美综合一区二区三区| **网站欧美大片在线观看| 国产精品自拍网站| 日韩欧美在线观看一区二区三区| 亚洲综合自拍偷拍| 91丨porny丨蝌蚪视频| 国产午夜精品久久久久久免费视| 日韩1区2区日韩1区2区| 欧美日韩精品欧美日韩精品一 | 欧美一卡2卡3卡4卡| 亚洲一区二区欧美日韩| 色综合欧美在线| 一区在线播放视频| 成人av网站免费| 国产清纯白嫩初高生在线观看91 | 欧美视频在线观看一区二区| 136国产福利精品导航| 国产成人免费9x9x人网站视频| 欧美www视频| 国产又黄又大久久| 久久久亚洲精品石原莉奈| 久久国产精品第一页| 精品理论电影在线观看| 国产精品88888| 亚洲国产精品av| 93久久精品日日躁夜夜躁欧美| 亚洲欧美福利一区二区| 在线免费亚洲电影| 性久久久久久久久久久久| 日韩一区二区三区在线| 紧缚奴在线一区二区三区| 精品播放一区二区| 国产白丝精品91爽爽久久 | 亚洲视频一区二区免费在线观看| gogogo免费视频观看亚洲一| 亚洲视频小说图片| 欧美二区三区91| 九九在线精品视频| 国产精品久久久久久久久免费丝袜 | 日韩高清中文字幕一区| 久久亚洲捆绑美女| 波多野结衣一区二区三区| 亚洲免费高清视频在线| 欧美二区三区91| 国产成人夜色高潮福利影视| 亚洲精品国产成人久久av盗摄| 欧美日韩国产小视频在线观看| 伦理电影国产精品| 国产精品久久久久精k8| 欧美高清性hdvideosex| 国产高清在线精品| 亚洲成人动漫一区| 欧美mv日韩mv亚洲| 色综合久久88色综合天天6| 日本特黄久久久高潮| 国产精品丝袜91| 6080亚洲精品一区二区| 丁香另类激情小说| 日精品一区二区三区| 中文字幕一区二区在线观看| 欧美日韩一本到| 成人国产亚洲欧美成人综合网| 五月激情六月综合| 亚洲欧洲精品一区二区三区| 欧美一区二区在线播放| 91尤物视频在线观看| 日本午夜精品视频在线观看| 亚洲男人的天堂在线aⅴ视频| 91精品国产麻豆国产自产在线| 成人毛片视频在线观看| 美女久久久精品| 亚洲国产日日夜夜| 亚洲视频1区2区| 国产网站一区二区| 欧美一区二区观看视频| 日本道色综合久久| 成人性生交大片免费看中文| 日本一区中文字幕| 一区二区三区在线免费| 中文字幕av一区二区三区| 精品精品欲导航| 欧美精品在欧美一区二区少妇| 99久久国产综合精品色伊| 国产69精品久久久久毛片| 捆绑调教美女网站视频一区| 一区二区理论电影在线观看| 国产精品福利一区| 国产日韩综合av| 久久精品无码一区二区三区| 欧美一级生活片| 欧美日韩精品一区二区三区| 在线精品观看国产| 欧洲一区二区av| 色婷婷综合在线| 在线亚洲一区观看| 91美女福利视频| 日本韩国欧美三级| 色偷偷成人一区二区三区91 | 一区二区三区四区不卡在线| 国产精品国产三级国产a| 国产精品久久久久9999吃药| 国产精品免费aⅴ片在线观看| 久久久五月婷婷| 中文字幕精品一区二区三区精品| 国产视频在线观看一区二区三区 | 91丨九色porny丨蝌蚪| 92国产精品观看| 欧美三级在线视频| 8x福利精品第一导航| 日韩欧美一卡二卡| 久久亚洲一区二区三区四区| 中文字幕 久热精品 视频在线 | 一区二区三区资源| 亚洲mv大片欧洲mv大片精品| 日韩电影在线一区二区三区| 久久国产精品区| 国产91丝袜在线18| 色呦呦国产精品| 欧美日本乱大交xxxxx| 欧美成人一级视频| 国产精品麻豆99久久久久久| 亚洲男女一区二区三区| 蜜臀精品一区二区三区在线观看 | 91最新地址在线播放| 欧美人伦禁忌dvd放荡欲情| 精品少妇一区二区三区免费观看 | 国产精品久久久久影院| 亚洲国产精品一区二区www在线| 男人的天堂久久精品| 丁香婷婷综合网| 欧美日韩aaa| 国产精品女主播av| 免费美女久久99| 99精品在线免费| 欧美一区二区福利视频| 国产精品短视频| 另类调教123区| 欧美综合在线视频|