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

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

?? callablestatementresultset.java

?? 本套系統采用了業界當前最為流行的beanAction組件
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*
 *  Copyright 2004 Clinton Begin
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
package com.ibatis.sqlmap.engine.type;

import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.*;
import java.util.Calendar;
import java.util.Map;

/**
 * A way to make a CallableStatement look like a ResultSet 
 */
public class CallableStatementResultSet implements ResultSet {

  private CallableStatement cs;

  /**
   * Constructor to stretch a ResultSet interface over a CallableStatement
   *  
   * @param cs - the CallableStatement
   */
  public CallableStatementResultSet(CallableStatement cs) {
    this.cs = cs;
  }

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

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

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

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

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

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

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

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

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

  public Array getArray(String colName) throws SQLException {
    return cs.getArray(colName);
  }

  public Array getArray(int i) throws SQLException {
    return cs.getArray(i);
  }

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

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

  public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
    return cs.getBigDecimal(columnIndex);
  }

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

  public BigDecimal getBigDecimal(String columnName) throws SQLException {
    return cs.getBigDecimal(columnName);
  }

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

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

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

  public Blob getBlob(String colName) throws SQLException {
    return cs.getBlob(colName);
  }

  public Blob getBlob(int i) throws SQLException {
    return cs.getBlob(i);
  }

  public boolean getBoolean(int columnIndex) throws SQLException {
    return cs.getBoolean(columnIndex);
  }

  public boolean getBoolean(String columnName) throws SQLException {
    return cs.getBoolean(columnName);
  }

  public byte getByte(int columnIndex) throws SQLException {
    return cs.getByte(columnIndex);
  }

  public byte getByte(String columnName) throws SQLException {
    return cs.getByte(columnName);
  }

  public byte[] getBytes(int columnIndex) throws SQLException {
    return cs.getBytes(columnIndex);
  }

  public byte[] getBytes(String columnName) throws SQLException {
    return cs.getBytes(columnName);
  }

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

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

  public Clob getClob(String colName) throws SQLException {
    return cs.getClob(colName);
  }

  public Clob getClob(int i) throws SQLException {
    return cs.getClob(i);
  }

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

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

  public Date getDate(int columnIndex) throws SQLException {
    return cs.getDate(columnIndex);
  }

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

  public Date getDate(String columnName) throws SQLException {
    return cs.getDate(columnName);
  }

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

  public double getDouble(int columnIndex) throws SQLException {
    return cs.getDouble(columnIndex);
  }

  public double getDouble(String columnName) throws SQLException {
    return cs.getDouble(columnName);
  }

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

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

  public float getFloat(int columnIndex) throws SQLException {
    return cs.getFloat(columnIndex);
  }

  public float getFloat(String columnName) throws SQLException {
    return cs.getFloat(columnName);
  }

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

  public int getInt(String columnName) throws SQLException {
    return cs.getInt(columnName);
  }

  public long getLong(int columnIndex) throws SQLException {
    return cs.getLong(columnIndex);
  }

  public long getLong(String columnName) throws SQLException {
    return cs.getLong(columnName);
  }

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

  public Object getObject(String colName, Map map) throws SQLException {
    return cs.getObject(colName, map);
  }

  public Object getObject(int columnIndex) throws SQLException {
    return cs.getObject(columnIndex);
  }

  public Object getObject(String columnName) throws SQLException {
    return cs.getObject(columnName);
  }

  public Object getObject(int i, Map map) throws SQLException {
    return cs.getObject(i, map);
  }

  public Ref getRef(String colName) throws SQLException {
    return cs.getRef(colName);
  }

  public Ref getRef(int i) throws SQLException {
    return cs.getRef(i);
  }

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

  public short getShort(int columnIndex) throws SQLException {
    return cs.getShort(columnIndex);
  }

  public short getShort(String columnName) throws SQLException {
    return cs.getShort(columnName);
  }

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

  public String getString(int columnIndex) throws SQLException {
    return cs.getString(columnIndex);
  }

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

  public Time getTime(int columnIndex) throws SQLException {
    return cs.getTime(columnIndex);
  }

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

  public Time getTime(String columnName) throws SQLException {
    return cs.getTime(columnName);
  }

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

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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产制服丝袜一区| 国产欧美日韩综合精品一区二区| 国产精品主播直播| 精品一区二区三区免费视频| 亚洲成人动漫av| 午夜精品aaa| 热久久久久久久| 日本aⅴ亚洲精品中文乱码| 日本不卡的三区四区五区| 日韩中文字幕不卡| 麻豆一区二区在线| 国产激情一区二区三区桃花岛亚洲 | 成人小视频免费在线观看| 国产美女视频一区| 国产精品亚洲а∨天堂免在线| 国产一区二区三区精品视频| 国产成人av一区| 91麻豆国产在线观看| 在线精品亚洲一区二区不卡| 欧美日韩在线电影| 欧美一区二区视频网站| www一区二区| 中文字幕综合网| 亚洲3atv精品一区二区三区| 秋霞午夜鲁丝一区二区老狼| 国产中文字幕一区| 在线观看av一区| 精品少妇一区二区三区日产乱码| 久久久国产精品麻豆| 综合av第一页| 麻豆成人在线观看| 99riav久久精品riav| 91精品国产综合久久精品麻豆 | 欧美日韩在线三级| 久久这里只有精品6| 中文字幕一区av| 日韩福利视频网| 国产1区2区3区精品美女| 在线观看日韩国产| 日韩欧美色电影| 国产精品二区一区二区aⅴ污介绍| 亚洲网友自拍偷拍| 国产999精品久久久久久绿帽| 欧洲视频一区二区| 久久久国产午夜精品| 日日噜噜夜夜狠狠视频欧美人 | 91在线国产福利| 欧美大肚乱孕交hd孕妇| 依依成人综合视频| 国产福利一区二区三区在线视频| 欧美自拍偷拍一区| 日本一二三四高清不卡| 青青草成人在线观看| 91久久精品一区二区| 国产亚洲自拍一区| 日韩国产在线一| 色欧美88888久久久久久影院| 精品国产3级a| 日本不卡123| 欧美日韩黄视频| 日韩美女精品在线| av在线播放成人| 久久精品男人的天堂| 美女视频黄频大全不卡视频在线播放| 色综合色狠狠天天综合色| 国产亚洲1区2区3区| 久久精品国产久精国产爱| 欧美视频日韩视频| 亚洲欧美日韩精品久久久久| 成年人网站91| 中文字幕一区二区三区在线观看| 国产精品小仙女| 国产免费成人在线视频| 韩国一区二区在线观看| 精品国产在天天线2019| 美脚の诱脚舐め脚责91 | 日韩在线一二三区| 777奇米四色成人影色区| 亚洲国产欧美日韩另类综合| 欧美影院午夜播放| 亚洲一区在线观看免费观看电影高清| 色综合久久综合中文综合网| 中文字幕亚洲欧美在线不卡| 成人动漫一区二区| 亚洲男人的天堂一区二区| 91丝袜美腿高跟国产极品老师 | 国产69精品久久久久777| 国产校园另类小说区| 国产成人精品综合在线观看 | 91麻豆精品国产91久久久资源速度| 一区二区三区在线视频播放| 欧美影院精品一区| 亚洲aⅴ怡春院| 久久综合九色综合久久久精品综合| 国产精品一区二区91| 亚洲国产精品黑人久久久| 从欧美一区二区三区| 伊人一区二区三区| 欧美一区二区三区的| 国产白丝精品91爽爽久久| 亚洲欧美日韩国产另类专区| 欧美日韩国产精选| 国内成人免费视频| 亚洲天堂2014| 这里只有精品电影| 国产福利一区在线| 亚洲一区二区成人在线观看| 精品乱人伦小说| 99天天综合性| 日本不卡一区二区三区 | 91在线观看下载| 日本在线播放一区二区三区| 国产亚洲福利社区一区| 欧美日韩一区 二区 三区 久久精品 | 国产精品久久久久精k8 | 亚洲欧洲日韩在线| 欧美一区二区黄色| 成人av网站免费观看| 天天av天天翘天天综合网| 国产人成一区二区三区影院| 一本到三区不卡视频| 国内精品久久久久影院薰衣草| 亚洲综合另类小说| 欧美国产激情二区三区| 欧美一区二区三区四区五区 | 一区二区免费在线| 国产欧美日韩精品在线| 制服丝袜在线91| 91啦中文在线观看| 国产在线精品一区二区不卡了| 亚洲美女淫视频| 欧美激情中文字幕| 日韩一区二区在线免费观看| www.欧美精品一二区| 精品亚洲成a人在线观看| 亚洲国产精品久久人人爱蜜臀 | 精品成人a区在线观看| 欧美中文字幕一二三区视频| 国产精品69久久久久水密桃| 奇米一区二区三区| 午夜欧美视频在线观看| 亚洲精品成人a在线观看| 国产精品激情偷乱一区二区∴| 日韩视频永久免费| 欧美一级高清片| 欧美喷潮久久久xxxxx| 欧美四级电影在线观看| 色婷婷激情久久| 99久久婷婷国产综合精品| 成人亚洲精品久久久久软件| 国产一区二区成人久久免费影院 | 国产精品第五页| 日本一区二区三区高清不卡| 久久伊99综合婷婷久久伊| 日韩精品一区二区三区视频在线观看| 337p亚洲精品色噜噜狠狠| 制服丝袜亚洲精品中文字幕| 欧美一区二区黄色| 久久免费看少妇高潮| 日本一区二区三区国色天香| 国产精品亲子伦对白| 最新中文字幕一区二区三区 | 久久99精品国产麻豆婷婷洗澡| 日本三级亚洲精品| 美日韩黄色大片| 国产一区二区0| 成人动漫在线一区| 色婷婷久久久亚洲一区二区三区 | 日韩视频中午一区| 久久综合色综合88| 国产精品国产自产拍高清av王其| 国产精品看片你懂得| 亚洲永久免费av| 午夜伊人狠狠久久| 激情偷乱视频一区二区三区| 国产成+人+日韩+欧美+亚洲| 91网站最新网址| 在线电影国产精品| 久久久久久免费网| 亚洲婷婷在线视频| 麻豆一区二区在线| 99免费精品视频| 欧美日韩在线电影| 国产亚洲欧美在线| 亚洲一区中文在线| 国产精品一区久久久久| 色美美综合视频| 精品av久久707| 一区二区三区免费看视频| 开心九九激情九九欧美日韩精美视频电影 | 精品国产一区二区亚洲人成毛片| 久久视频一区二区| 亚洲精品免费一二三区| 韩国一区二区在线观看| 欧美中文字幕一二三区视频| 久久精品欧美一区二区三区不卡| 亚洲 欧美综合在线网络| 国产不卡视频在线播放| 欧美一级理论片| 一区二区三区精品视频在线|