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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? tinysqlresultset.java

?? TinySQL是一個輕量級的純java數(shù)據(jù)庫引擎
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateFloat(int columnIndex, float x) throws SQLException {
      throw new SQLException("tinySQL does not support updateFloat.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a Double value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateDouble(int columnIndex, double x) throws SQLException {
      throw new SQLException("tinySQL does not support updateDouble.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a BigDecimal value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
      throw new SQLException("tinySQL does not support updateBigDecimal.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a String value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateString(int columnIndex, String x) throws SQLException {
      throw new SQLException("tinySQL does not support updateString.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a byte array value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateBytes(int columnIndex, byte x[]) throws SQLException {
      throw new SQLException("tinySQL does not support updateBytes.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a Date value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateDate(int columnIndex, java.sql.Date x) throws SQLException {
      throw new SQLException("tinySQL does not support updateDate.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a Time value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateTime(int columnIndex, java.sql.Time x) throws SQLException {
      throw new SQLException("tinySQL does not support updateTime.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a Timestamp value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateTimestamp(int columnIndex, java.sql.Timestamp x)
      throws SQLException {
        throw new SQLException("tinySQL does not support updateTimestamp.");
      }

    /** 
     * JDBC 2.0
     *  
     * Updates a column with an ascii stream value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateAsciiStream(int columnIndex, 
                           java.io.InputStream x, 
                           int length) throws SQLException {
      throw new SQLException("tinySQL does not support updateAsciiStream.");
   }

    /** 
     * JDBC 2.0
     *  
     * Updates a column with a binary stream value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateBinaryStream(int columnIndex, 
                            java.io.InputStream x,
                            int length) throws SQLException {
      throw new SQLException("tinySQL does not support updateBinaryStream.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a character stream value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateCharacterStream(int columnIndex,
                             java.io.Reader x,
                             int length) throws SQLException {
      throw new SQLException("tinySQL does not support updateCharacterStream.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with an Object value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateObject(int columnIndex, Object x, int scale)
      throws SQLException {
      throw new SQLException("tinySQL does not support updateObject.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with an Object value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateObject(int columnIndex, Object x) throws SQLException {
      throw new SQLException("tinySQL does not support updateObject.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a null value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * methods are called to update the database.
     *
     * @param columnName the name of the column
     * @exception SQLException if a database access error occurs
     */
    public void updateNull(String columnName) throws SQLException  {
      throw new SQLException("tinySQL does not support updateNull.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a boolean value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateBoolean(String columnName, boolean x) throws SQLException {
      throw new SQLException("tinySQL does not support updateBoolean.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a byte value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateByte(String columnName, byte x) throws SQLException {
      throw new SQLException("tinySQL does not support updateByte.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a short value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateShort(String columnName, short x) throws SQLException {
      throw new SQLException("tinySQL does not support updateShort.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with an integer value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateInt(String columnName, int x) throws SQLException {
      throw new SQLException("tinySQL does not support updateInt.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a long value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateLong(String columnName, long x) throws SQLException {
      throw new SQLException("tinySQL does not support updateLong.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a float value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateFloat(String columnName, float x) throws SQLException {
      throw new SQLException("tinySQL does not support updateFloat.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a double value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateDouble(String columnName, double x) throws SQLException {
      throw new SQLException("tinySQL does not support updateDouble.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a BigDecimal value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateBigDecimal(String columnName, BigDecimal x) throws SQLException {
      throw new SQLException("tinySQL does not support updateDecimal.");
    }

    /**
     * JDBC 2.0
     *  
     * Updates a column with a String value.
     *
     * The <code>updateXXX</code> methods are used to update column values in the
     * current row, or the insert row.  The <code>updateXXX</code> methods do not 
     * update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
     * 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 void updateString(String columnName, String x) throws SQLExcep

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品伦一区二区三级视频| 日本一区二区三区在线观看| 国产精品天干天干在线综合| 视频一区中文字幕| 成人av免费在线| 精品国产1区2区3区| 亚洲永久免费视频| 成人黄色大片在线观看| 久久综合99re88久久爱| 婷婷综合在线观看| 在线视频国内自拍亚洲视频| 亚洲国产精品黑人久久久| 久久成人羞羞网站| 欧美精品在线观看播放| 一区二区免费视频| 成人av电影在线网| 久久精品一区二区三区四区 | 欧美日韩国产一级二级| 亚洲丝袜自拍清纯另类| 国产成人啪免费观看软件| 日韩欧美国产一区二区三区| 日韩电影在线观看网站| 欧美日免费三级在线| 一区二区三区四区国产精品| 成人av综合一区| 国产免费观看久久| 国产毛片精品视频| 欧美精品一区二区三区在线播放| 日本不卡中文字幕| 欧美精品丝袜中出| 亚洲v中文字幕| 欧美无砖砖区免费| 亚洲电影你懂得| 欧美日韩国产首页| 天堂久久一区二区三区| 欧美久久婷婷综合色| 亚洲成av人综合在线观看| 欧美日韩在线观看一区二区| 亚洲成va人在线观看| 欧美日韩一区二区三区四区| 五月天欧美精品| 91精品国产福利在线观看| 免费成人美女在线观看.| 日韩一区二区三区电影在线观看 | 久久国产精品99精品国产| 欧美一卡2卡三卡4卡5免费| 日韩精品成人一区二区在线| 欧美丰满美乳xxx高潮www| 亚洲国产精品久久久久秋霞影院| 欧美日韩免费视频| 秋霞午夜av一区二区三区| 日韩精品一区二区三区四区| 国内精品伊人久久久久av影院| 久久婷婷色综合| 懂色av一区二区三区免费观看| 国产精品不卡一区| 在线观看欧美日本| 日韩成人免费在线| 337p日本欧洲亚洲大胆色噜噜| 国产精品乡下勾搭老头1| 亚洲国产电影在线观看| 91在线观看美女| 亚洲1区2区3区视频| 精品国产一二三| 成人午夜免费av| 亚洲一区二区三区精品在线| 337p亚洲精品色噜噜噜| 国产在线视频不卡二| 中文字幕一区二区三区在线不卡| 欧美性生交片4| 久久99久久精品欧美| 中文字幕免费不卡在线| 在线一区二区三区做爰视频网站| 日本中文在线一区| 久久精品亚洲乱码伦伦中文| 色婷婷亚洲一区二区三区| 免费不卡在线观看| 亚洲国产精品成人综合色在线婷婷| 在线中文字幕一区二区| 久久99精品国产.久久久久| 国产精品国产三级国产普通话99 | 高清成人在线观看| 亚洲已满18点击进入久久| 欧美成人女星排名| 色综合久久99| 免费久久99精品国产| 国产精品无人区| 欧美高清视频一二三区| 国产成都精品91一区二区三| 一区二区在线看| 欧美成人免费网站| 91久久精品一区二区二区| 久久99久久99| 一区二区三区小说| 久久精品日产第一区二区三区高清版| 欧美影院精品一区| 韩国av一区二区三区四区| 亚洲一区二区三区四区不卡| 久久人人爽爽爽人久久久| 欧美性生活影院| 高清在线观看日韩| 另类小说色综合网站| 一区二区三区四区高清精品免费观看| 26uuu亚洲| 欧美日韩免费观看一区三区| 成人av影视在线观看| 久99久精品视频免费观看| 亚洲午夜在线视频| 中文字幕在线免费不卡| 日韩亚洲欧美成人一区| 在线观看av一区| 成人动漫精品一区二区| 精品一区二区三区久久久| 亚洲电影一区二区三区| 中文字幕在线一区免费| 精品sm捆绑视频| 色婷婷久久99综合精品jk白丝| 亚洲精选免费视频| 成人毛片老司机大片| 国产精品久久99| 成人国产免费视频| 亚洲一二三专区| 欧美日韩一区高清| 国产精品三级av在线播放| 国产午夜精品久久久久久久| 欧美日韩在线播放三区| 99久久久无码国产精品| 国产一区二区三区视频在线播放| 亚洲超碰精品一区二区| 亚洲精品五月天| 国产精品无圣光一区二区| 久久这里只有精品视频网| 欧美一区二区三区小说| 欧美日韩一级黄| 在线观看不卡一区| 色www精品视频在线观看| jizz一区二区| a4yy欧美一区二区三区| 成人久久18免费网站麻豆 | 亚洲人快播电影网| 国产日韩视频一区二区三区| 2021久久国产精品不只是精品| 日韩午夜激情av| 欧美一区二区三区日韩| 91成人在线精品| 欧美综合久久久| 日本电影亚洲天堂一区| 色综合天天综合色综合av| 色偷偷88欧美精品久久久| 亚洲欧美日本在线| 日韩一区中文字幕| 中文字幕日本不卡| 亚洲视频小说图片| 亚洲欧美一区二区视频| 亚洲视频免费看| 亚洲色图视频网| 亚洲少妇最新在线视频| 亚洲人成精品久久久久久| 亚洲人成伊人成综合网小说| 中文字幕日韩精品一区| 亚洲精品视频观看| 亚洲国产精品一区二区www| 亚洲成人久久影院| 秋霞电影一区二区| 极品少妇xxxx精品少妇| 国产精品一区久久久久| 国产成人h网站| 成人av资源在线观看| 91视频国产观看| 欧美专区亚洲专区| 7777精品伊人久久久大香线蕉超级流畅 | 亚洲午夜精品久久久久久久久| 亚洲一区二区三区四区五区黄| 亚洲国产日韩一区二区| 青青草国产成人99久久| 久久草av在线| 欧美日韩精品是欧美日韩精品| 欧美日韩精品免费| 日韩你懂的电影在线观看| 久久久一区二区三区| 国产精品乱人伦中文| 欧美激情在线观看视频免费| 国产亚洲成av人在线观看导航| 国产乱国产乱300精品| 国产精品18久久久久| 成人99免费视频| 色爱区综合激月婷婷| 91精品国产丝袜白色高跟鞋| 精品粉嫩超白一线天av| 国产精品久久久久7777按摩| 亚洲综合色丁香婷婷六月图片| 免费观看一级欧美片| 国产一区不卡视频| 99久久综合狠狠综合久久| 欧美影院一区二区三区| 精品国产乱码久久久久久闺蜜| 国产精品久久久久久久久免费相片| 亚洲一区二三区| 国产麻豆午夜三级精品| 色偷偷一区二区三区|