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

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

?? tinysqlresultset.java

?? TinySQL是一個輕量級的純java數據庫引擎
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
     * JDBC 2.0
     *
     * <p>Moves the cursor to the last row in the result set.  
     *
     * @return true if the cursor is on a valid row;
         * false if there are no rows in the result set
     * @exception SQLException if a database access error occurs or the
     * result set type is TYPE_FORWARD_ONLY.
     */
    public boolean last() throws SQLException {
      return false;
    }

    /**
     * JDBC 2.0
     *
     * <p>Retrieves the current row number.  The first row is number 1, the
     * second number 2, and so on.  
     *
     * @return the current row number; 0 if there is no current row
     * @exception SQLException if a database access error occurs
     */
    public int getRow() throws SQLException {
      return 0;
    }

    /**
     * JDBC 2.0
     *
     * <p>Moves the cursor to the given row number in the result set.
     *
     * <p>If the row number is positive, the cursor moves to 
         * the given row number with respect to the
     * beginning of the result set.  The first row is row 1, the second
     * is row 2, and so on. 
     *
     * <p>If the given row number is negative, the cursor moves to
         * an absolute row position with respect to
     * the end of the result set.  For example, calling
         * <code>absolute(-1)</code> positions the 
     * cursor on the last row, <code>absolute(-2)</code> indicates the next-to-last
     * row, and so on.
     *
     * <p>An attempt to position the cursor beyond the first/last row in
     * the result set leaves the cursor before/after the first/last
     * row, respectively.
     *
     * <p>Note: Calling <code>absolute(1)</code> is the same
         * as calling <code>first()</code>.
     * Calling <code>absolute(-1)</code> is the same as calling <code>last()</code>.
     *
     * @return true if the cursor is on the result set; false otherwise
     * @exception SQLException if a database access error occurs or 
     * row is 0, or result set type is TYPE_FORWARD_ONLY.
     */
    public boolean absolute( int row ) throws SQLException {
      return false;
    }

    /**
     * JDBC 2.0
     *
     * <p>Moves the cursor a relative number of rows, either positive or negative.
     * Attempting to move beyond the first/last row in the
     * result set positions the cursor before/after the
     * the first/last row. Calling <code>relative(0)</code> is valid, but does
     * not change the cursor position.
     *
     * <p>Note: Calling <code>relative(1)</code>
         * is different from calling <code>next()</code>
     * because is makes sense to call <code>next()</code> 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.
     *
     * @return true if the cursor is on a row; false otherwise
     * @exception SQLException if a database access error occurs, there
     * is no current row, or the result set type is TYPE_FORWARD_ONLY
     */
    public boolean relative( int rows ) throws SQLException {
      return false;
    }

    /**
     * JDBC 2.0
     *
     * <p>Moves the cursor to the previous row in the result set.  
     *
     * <p>Note: <code>previous()</code> is not the same as
         * <code>relative(-1)</code> because it
     * makes sense to call</code>previous()</code> when there is no current row.
     *
     * @return true if the cursor is on a valid row; false if it is off the result set
     * @exception SQLException if a database access error occurs or the
     * result set type is TYPE_FORWARD_ONLY
     */
    public boolean previous() throws SQLException {
      return false;
    }

    //---------------------------------------------------------------------
    // Properties
    //---------------------------------------------------------------------

    /**
     * JDBC 2.0
     *
     * The rows in a result set will be processed in a forward direction;
     * first-to-last.
     */
    int FETCH_FORWARD = 1000;

    /**
     * JDBC 2.0
     *
     * The rows in a result set will be processed in a reverse direction;
     * last-to-first.
     */
    int FETCH_REVERSE = 1001;

    /**
     * JDBC 2.0
     * 
     * The order in which rows in a result set will be processed is unknown.
     */
    int FETCH_UNKNOWN = 1002;

    /**
     * JDBC 2.0
     *
     * Gives a hint as to the direction in which the rows in this result set
     * will be processed.  The initial value is determined by the statement
     * that produced the result set.  The fetch direction may be changed
     * at any time.
     *
     * @exception SQLException if a database access error occurs or
     * the result set type is TYPE_FORWARD_ONLY and the fetch direction is not 
     * FETCH_FORWARD.
     */
    public void setFetchDirection(int direction) throws SQLException {
      return ;
    }

    /**
     * JDBC 2.0
     *
     * Returns the fetch direction for this result set.
     *
         * @return the current fetch direction for this result set
     * @exception SQLException if a database access error occurs
     */
    public int getFetchDirection() throws SQLException {
      return FETCH_FORWARD;
    }

    /**
     * JDBC 2.0
     *
     * Gives the JDBC driver a hint as to the number of rows that should 
     * be fetched from the database when more rows are needed for this result
     * set.  If the fetch size specified is zero, the JDBC driver 
     * ignores the value and is free to make its own best guess as to what
     * the fetch size should be.  The default value is set by the statement 
     * that created the result set.  The fetch size may be changed at any 
     * time.
     *
     * @param rows the number of rows to fetch
     * @exception SQLException if a database access error occurs or the
     * condition 0 <= rows <= this.getMaxRows() is not satisfied.
     */
    public void setFetchSize(int rows) throws SQLException {
      if (rows <= 0)
    		throw new SQLException ("Condition 0 <= rows <= this.getMaxRows() is not satisfied");
    
      result.setFetchSize (rows);
    }

    /**
     * JDBC 2.0
     *
     * Returns the fetch size for this result set.
     *
         * @return the current fetch size for this result set
     * @exception SQLException if a database access error occurs
     */
    public int getFetchSize() throws SQLException {
      return result.getFetchSize ();
    }

    /**
     * JDBC 2.0
         * The type for a <code>ResultSet</code> object whose cursor may
         * move only forward.
     */
    int TYPE_FORWARD_ONLY = 1003;

    /**
     * JDBC 2.0
         * The type for a <code>ResultSet</code> object that is scrollable
         * but generally not sensitive to changes made by others.
         * 
     */
    int TYPE_SCROLL_INSENSITIVE = 1004;

    /**
     * JDBC 2.0
         * The type for a <code>ResultSet</code> object that is scrollable
         * and generally sensitive to changes made by others.
     */
    int TYPE_SCROLL_SENSITIVE = 1005;

    /**
     * JDBC 2.0
     *
     * Returns the type of this result set.  The type is determined by
     * the statement that created the result set.
     *
     * @return TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, or
         * TYPE_SCROLL_SENSITIVE
     * @exception SQLException if a database access error occurs
     */
    public int getType() throws SQLException {
      return result.getType (); 
    }

    /**
     * JDBC 2.0
         * The concurrency mode for a <code>ResultSet</code> object
         * that may NOT be updated.
     *  
     */
    int CONCUR_READ_ONLY = 1007;

    /**
     * JDBC 2.0
         * The concurrency mode for a <code>ResultSet</code> object
         * that may be updated.
     * 
     */
    int CONCUR_UPDATABLE = 1008;

    /**
     * JDBC 2.0
     *
     * Returns the concurrency mode of this result set.  The concurrency
     * used is determined by the statement that created the result set.
     *
     * @return the concurrency type, CONCUR_READ_ONLY or CONCUR_UPDATABLE
     * @exception SQLException if a database access error occurs
     */
    public int getConcurrency() throws SQLException {
      return CONCUR_READ_ONLY;
    }

    //---------------------------------------------------------------------
    // Updates
    //---------------------------------------------------------------------

    /**
     * JDBC 2.0
     *
     * Indicates whether 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
     * 
     * @see DatabaseMetaData#updatesAreDetected
     */
    public boolean rowUpdated() throws SQLException {
      return false;
    }

    /**
     * JDBC 2.0
     *
     * Indicates whether the current row has had an insertion.  The value returned 
     * depends on whether or not the result set can detect visible inserts.
     *
     * @return true if a row has had an insertion and insertions are detected
     * @exception SQLException if a database access error occurs
     * 
     * @see DatabaseMetaData#insertsAreDetected
     */
    public boolean rowInserted() throws SQLException {
      return false;
    }

    /**
     * JDBC 2.0
     *
     * Indicates whether a 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 a row was deleted and deletions are detected
     * @exception SQLException if a database access error occurs
     * 
     * @see DatabaseMetaData#deletesAreDetected
     */
    public boolean rowDeleted() throws SQLException {
      return false;
    }

    /**
     * JDBC 2.0
     * 
     * Give a nullable column 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 columnIndex the first column is 1, the second is 2, ...
     * @exception SQLException if a database access error occurs
     */
    public void updateNull(int columnIndex) 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 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 updateBoolean(int columnIndex, 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 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 updateByte(int columnIndex, 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 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 updateShort(int columnIndex, 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 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 updateInt(int columnIndex, 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 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 updateLong(int columnIndex, 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 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美xxxx老人做受| 91在线视频18| 日韩vs国产vs欧美| 国产精品日日摸夜夜摸av| 精品国内二区三区| 欧美日本一区二区在线观看| 粉嫩欧美一区二区三区高清影视| 视频一区二区国产| 国产精品美女视频| 欧美一级片在线观看| 91小视频免费观看| 欧美aaaaaa午夜精品| 精品午夜一区二区三区在线观看| 一区二区三区.www| 亚洲六月丁香色婷婷综合久久| 欧美三级蜜桃2在线观看| 亚洲777理论| 欧美一级久久久| 欧美一区二区精美| 欧美日韩不卡一区| 欧美日本一区二区三区| 欧美日韩免费一区二区三区视频| 日本精品一区二区三区四区的功能| 粉嫩绯色av一区二区在线观看| 韩国女主播一区| 日本一区二区电影| 亚洲免费资源在线播放| 国产亚洲精品资源在线26u| 欧美精品一区二区蜜臀亚洲| 亚洲色图第一区| 亚洲国产一区二区在线播放| 亚洲视频网在线直播| 国产精品久久久久久久蜜臀 | 久久亚洲一区二区三区明星换脸 | 亚洲一区自拍偷拍| 久久9热精品视频| 精品污污网站免费看| 国产三级一区二区| 亚洲一区免费视频| 日韩国产精品久久| 中文字幕av一区二区三区| 亚洲摸摸操操av| 蜜臀精品久久久久久蜜臀 | 国产精品麻豆欧美日韩ww| 亚洲图片欧美综合| 热久久国产精品| 亚洲女与黑人做爰| 亚洲大尺度视频在线观看| 国产精品一区二区在线观看不卡 | 国产精品亚洲一区二区三区妖精| 欧美午夜精品一区| 亚洲午夜在线视频| 91小视频在线| 国产精品福利一区| youjizz久久| 中文字幕在线播放不卡一区| 成人av在线观| 欧美激情综合在线| 青青草伊人久久| 欧美视频第二页| 国产精品久久久久久久久久久免费看| 亚洲午夜在线视频| av中文字幕在线不卡| 精品国产一区二区三区忘忧草| 欧美激情一区不卡| 99国产精品久| 一区二区高清在线| 亚洲丝袜精品丝袜在线| 午夜精品福利一区二区三区蜜桃| 91精品国产一区二区| 久久99国产精品麻豆| 国产亚洲精品bt天堂精选| av一本久道久久综合久久鬼色| 欧美日韩国产片| 国产精品污www在线观看| 亚洲欧洲三级电影| 色婷婷av一区二区三区大白胸| 欧美三级在线看| 欧美专区日韩专区| 中文字幕精品在线不卡| 亚洲人成网站色在线观看| 日韩在线一区二区三区| 极品少妇xxxx精品少妇偷拍| 2020国产精品自拍| 91免费看视频| 日韩**一区毛片| 久久精品综合网| 欧美午夜免费电影| 综合久久国产九一剧情麻豆| 欧亚一区二区三区| 国产麻豆精品theporn| 亚洲免费观看视频| 亚洲午夜精品17c| 欧美裸体一区二区三区| 美女视频一区二区三区| xfplay精品久久| 成人激情动漫在线观看| 亚洲一区二区不卡免费| 色狠狠综合天天综合综合| 男女男精品视频网| 亚洲精品一区二区三区蜜桃下载 | 午夜精品福利一区二区蜜股av| 99re在线视频这里只有精品| 91欧美一区二区| 国产日韩在线不卡| 美女爽到高潮91| 欧美亚洲国产怡红院影院| 亚洲综合在线免费观看| 91福利在线播放| av成人免费在线观看| 午夜精品福利一区二区蜜股av| 香蕉成人啪国产精品视频综合网 | 蜜乳av一区二区三区| 美腿丝袜亚洲一区| 国产老妇另类xxxxx| 国产成人精品亚洲午夜麻豆| 色婷婷激情久久| 6080午夜不卡| 久久天堂av综合合色蜜桃网| 亚洲丝袜另类动漫二区| 一区二区欧美国产| 免费美女久久99| 国产福利91精品| 欧美色图一区二区三区| 国产日韩欧美麻豆| 午夜精品123| 成人爽a毛片一区二区免费| 欧美专区在线观看一区| 精品美女一区二区| 亚洲欧洲精品一区二区精品久久久 | 国产精品 欧美精品| 欧美日韩国产区一| 亚洲欧洲99久久| 丁香天五香天堂综合| 欧美一级高清片在线观看| 成人免费视频在线观看| 懂色一区二区三区免费观看| 在线观看日韩电影| 久久亚洲一区二区三区四区| 五月婷婷久久综合| 99国产精品99久久久久久| 精品久久久影院| 免费成人av在线| 欧美精品乱码久久久久久| 最新日韩在线视频| 国产成人av一区二区三区在线 | 美女视频一区二区三区| 欧美网站大全在线观看| 亚洲伦理在线免费看| 国产麻豆日韩欧美久久| www国产亚洲精品久久麻豆| 天天av天天翘天天综合网色鬼国产| 成人毛片在线观看| 日韩一区二区三区视频在线观看| 亚洲一区二区av在线| 91视频在线看| 亚洲综合久久av| 在线中文字幕一区二区| 亚洲自拍偷拍av| 在线电影国产精品| 秋霞午夜av一区二区三区| 51精品秘密在线观看| 国内外成人在线| 国产女人aaa级久久久级| 成人a区在线观看| 亚洲成人你懂的| 制服丝袜亚洲精品中文字幕| 视频一区中文字幕国产| 国产亚洲欧美日韩在线一区| 国产激情一区二区三区| 亚洲女与黑人做爰| 日韩精品一区二区三区中文精品| 国产成人在线看| 亚洲高清免费在线| 亚洲精品在线电影| av成人动漫在线观看| 日韩精品国产欧美| 国产欧美一区二区精品婷婷| 99精品视频在线观看| 亚洲午夜久久久久久久久电影网| 日韩欧美一二三四区| 国产激情一区二区三区四区 | 久久97超碰色| 综合自拍亚洲综合图不卡区| 欧美精品久久99| 91网站黄www| 国产一区二区免费看| 亚洲午夜精品17c| 欧美国产乱子伦| 欧美伊人精品成人久久综合97| 国产精品亚洲专一区二区三区| 亚洲综合成人在线视频| 国产日韩精品一区二区三区| 欧美日韩在线亚洲一区蜜芽| 成人免费毛片片v| 精品午夜一区二区三区在线观看| 亚洲一区二区三区中文字幕 | 亚洲人成精品久久久久| 日韩欧美的一区| 欧美日韩不卡一区|