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

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

?? callablestatementresultset.java

?? 本套系統(tǒng)采用了業(yè)界當前最為流行的beanAction組件
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:

  public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
    return cs.getTimestamp(columnIndex, cal);
  }

  public Timestamp getTimestamp(String columnName) throws SQLException {
    return cs.getTimestamp(columnName);
  }

  public Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException {
    return cs.getTimestamp(columnName, cal);
  }

  public int getType() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public InputStream getUnicodeStream(int columnIndex) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public InputStream getUnicodeStream(String columnName) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public URL getURL(int columnIndex) throws SQLException {
    return cs.getURL(columnIndex);
  }

  public URL getURL(String columnName) throws SQLException {
    return cs.getURL(columnName);
  }

  public SQLWarning getWarnings() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void insertRow() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean isAfterLast() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean isBeforeFirst() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean isFirst() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean isLast() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean last() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void moveToCurrentRow() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void moveToInsertRow() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean next() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean previous() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void refreshRow() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean relative(int rows) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean rowDeleted() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean rowInserted() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean rowUpdated() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void setFetchDirection(int direction) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void setFetchSize(int rows) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateArray(int columnIndex, Array x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateArray(String columnName, Array x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateAsciiStream(String columnName, InputStream x, int length) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateBinaryStream(String columnName, InputStream x, int length) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateBlob(int columnIndex, Blob x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateBlob(String columnName, Blob x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateBoolean(int columnIndex, boolean x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateBoolean(String columnName, boolean x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateByte(int columnIndex, byte x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateByte(String columnName, byte x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateBytes(int columnIndex, byte x[]) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateBytes(String columnName, byte x[]) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateCharacterStream(String columnName, Reader reader, int length) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateClob(int columnIndex, Clob x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateClob(String columnName, Clob x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateDate(int columnIndex, Date x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateDate(String columnName, Date x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateDouble(int columnIndex, double x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateDouble(String columnName, double x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateFloat(int columnIndex, float x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateFloat(String columnName, float x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateInt(int columnIndex, int x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateInt(String columnName, int x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateLong(int columnIndex, long x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateLong(String columnName, long x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateNull(int columnIndex) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateNull(String columnName) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateObject(int columnIndex, Object x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateObject(int columnIndex, Object x, int scale) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateObject(String columnName, Object x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateObject(String columnName, Object x, int scale) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateRef(int columnIndex, Ref x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateRef(String columnName, Ref x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateRow() throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateShort(int columnIndex, short x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateShort(String columnName, short x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateString(int columnIndex, String x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateString(String columnName, String x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateTime(int columnIndex, Time x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateTime(String columnName, Time x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public void updateTimestamp(String columnName, Timestamp x) throws SQLException {
    throw new UnsupportedOperationException("CallableStatement does not support this method.");
  }

  public boolean wasNull() throws SQLException {
    return cs.wasNull();
  }

}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产乱理伦片在线观看夜一区| 亚洲男人天堂一区| 精品中文字幕一区二区| 欧美一卡2卡3卡4卡| 免费观看在线综合色| 精品人在线二区三区| 国产精品一区三区| 国产精品久久久久久久久晋中| 色婷婷综合久久久久中文一区二区| 亚洲日本va午夜在线电影| 欧美日韩亚洲综合在线| 久久99国产精品久久| 国产三级久久久| 日本道色综合久久| 久久99久久精品欧美| 中文字幕精品一区二区精品绿巨人 | 中文字幕成人在线观看| 91在线免费视频观看| 亚洲成人在线观看视频| 日韩一级高清毛片| 国产电影一区在线| 亚洲午夜免费电影| 久久伊人蜜桃av一区二区| 99久久国产综合精品色伊| 婷婷综合久久一区二区三区| 国产欧美精品在线观看| 欧美自拍偷拍午夜视频| 国产一区二区在线影院| 亚洲激情中文1区| 日韩精品在线看片z| 91亚洲国产成人精品一区二区三 | 91美女视频网站| 美女视频免费一区| 国产资源在线一区| 亚洲三级视频在线观看| 日韩欧美久久久| 91丨porny丨在线| 精品一区二区三区欧美| 亚洲国产精品久久不卡毛片 | 欧美一区二区三区喷汁尤物| 北条麻妃一区二区三区| 精品一区二区三区免费视频| 尤物在线观看一区| 国产无一区二区| 日韩欧美一级二级| 欧美影片第一页| 91香蕉视频黄| 成人激情动漫在线观看| 久久精品99国产精品| 日韩一区精品视频| 亚洲高清在线视频| 亚洲欧美另类小说| 国产精品久久久久毛片软件| 日韩午夜电影在线观看| 欧美日韩亚洲丝袜制服| 色狠狠色噜噜噜综合网| 成人免费福利片| 国产精品一区二区久激情瑜伽| 日韩精品乱码免费| 亚洲超丰满肉感bbw| 亚洲女女做受ⅹxx高潮| 国产精品免费免费| 国产日产欧美一区| 久久精品免视看| 久久久精品国产99久久精品芒果| 欧美一区二区三区精品| 欧美三级日本三级少妇99| 色爱区综合激月婷婷| 色婷婷久久久综合中文字幕| 99re在线精品| 91在线码无精品| 日本精品一区二区三区高清| 色视频欧美一区二区三区| 91老师片黄在线观看| 97久久精品人人爽人人爽蜜臀| 成人精品视频一区二区三区| 成人a区在线观看| eeuss鲁一区二区三区| 91网址在线看| 在线一区二区三区四区五区| 精品视频999| 91精品欧美一区二区三区综合在| 日韩一区二区三区精品视频| 欧美成人乱码一区二区三区| 久久久久久久久久久99999| 国产欧美日本一区视频| 亚洲视频中文字幕| 亚洲亚洲精品在线观看| 亚洲成av人片在线| 免费在线观看一区| 国产一区二区三区视频在线播放| 国产精品一区二区视频| 菠萝蜜视频在线观看一区| 91猫先生在线| 日韩一级完整毛片| 日韩精品一区二区三区四区视频| 麻豆国产欧美一区二区三区| 奇米影视7777精品一区二区| 国产自产v一区二区三区c| 成人爱爱电影网址| 欧美日韩精品一区二区在线播放| 6080yy午夜一二三区久久| 久久久午夜电影| 日韩毛片一二三区| 视频一区中文字幕国产| 国产成人免费9x9x人网站视频| jiyouzz国产精品久久| 欧美精品高清视频| 国产欧美日韩中文久久| 亚洲国产日产av| 国产精品一卡二卡| 在线视频国产一区| 26uuu精品一区二区在线观看| 国产精品超碰97尤物18| 欧美a级一区二区| 97久久人人超碰| 日韩欧美一级二级三级久久久| 国产精品久久久久久久久动漫| 日韩精品91亚洲二区在线观看| 国产美女精品在线| 欧美美女一区二区| 亚洲欧美一区二区视频| 美日韩一区二区| 91在线码无精品| 久久精品亚洲乱码伦伦中文| 午夜欧美大尺度福利影院在线看| 国产福利一区二区三区视频| 91精品麻豆日日躁夜夜躁| 亚洲视频资源在线| 国产中文字幕一区| 在线播放视频一区| 国产精品成人午夜| 国产在线播放一区| 欧美一级久久久| 亚洲午夜视频在线观看| av网站免费线看精品| 精品美女在线观看| 日日摸夜夜添夜夜添精品视频| 99re热这里只有精品视频| 久久精品欧美一区二区三区麻豆| 日韩精品久久久久久| 欧美在线观看视频在线| 1区2区3区国产精品| 成人午夜av电影| 久久精品视频在线看| 韩国视频一区二区| 日韩欧美成人午夜| 青草国产精品久久久久久| 欧美另类videos死尸| 亚洲图片自拍偷拍| 91搞黄在线观看| 尤物视频一区二区| 91福利资源站| 一区二区三区在线观看动漫 | 亚洲va在线va天堂| 色伊人久久综合中文字幕| 国产精品国产自产拍高清av王其| 国v精品久久久网| 欧美激情艳妇裸体舞| 国产成人精品影视| 国产午夜一区二区三区| 国产高清成人在线| 亚洲国产高清在线| 不卡av免费在线观看| 亚洲人成人一区二区在线观看| av日韩在线网站| 亚洲狠狠丁香婷婷综合久久久| 91视频一区二区| 亚洲精品自拍动漫在线| 在线观看亚洲一区| 在线观看日韩一区| 亚洲成a天堂v人片| 在线成人av影院| 美女视频免费一区| 国产日韩欧美精品电影三级在线| 国产成人av网站| 亚洲欧洲精品天堂一级| 日本高清视频一区二区| 亚洲h精品动漫在线观看| 91精品国产综合久久精品性色| 轻轻草成人在线| 国产网红主播福利一区二区| 99国产精品久久久久久久久久久| 一区二区三区丝袜| 欧美一区二区私人影院日本| 精品一区二区在线免费观看| 国产日韩欧美综合在线| 色综合视频一区二区三区高清| 午夜视频在线观看一区| 精品精品欲导航| www.亚洲在线| 肉丝袜脚交视频一区二区| 日韩精品一区二区三区老鸭窝 | 欧美成人乱码一区二区三区| 国产不卡视频在线播放| 亚洲综合久久久久| 日韩免费成人网| av不卡免费在线观看| 婷婷综合五月天| 国产精品国产三级国产普通话三级 |