亚洲欧美第一页_禁久久精品乱码_粉嫩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中文字幕不卡| 精品成人私密视频| 99re在线视频这里只有精品| 国产精品18久久久久| 经典三级一区二区| 国产乱码精品一区二区三| 精品无人区卡一卡二卡三乱码免费卡| 日韩av中文字幕一区二区三区| 亚洲一二三专区| 亚洲国产一区二区三区| 一区二区三区在线免费视频| 亚洲精品网站在线观看| 亚洲免费伊人电影| 亚洲精品国产a| 亚洲一区二区三区四区中文字幕 | 一二三区精品视频| 亚洲综合色婷婷| 五月婷婷久久丁香| 日韩高清在线电影| 久久99国产精品麻豆| 国产一区二区三区香蕉 | 日韩欧美一区在线| 日韩一卡二卡三卡| 久久久天堂av| 国产精品国产三级国产有无不卡| 中文字幕一区二区三区视频| 一区二区三区四区乱视频| 亚洲午夜电影网| 免费精品视频最新在线| 国产在线日韩欧美| 99在线精品观看| 欧美性生活大片视频| 日韩欧美亚洲另类制服综合在线| 国产性天天综合网| 亚洲女性喷水在线观看一区| 亚洲午夜av在线| 久久激情五月婷婷| 国产69精品久久久久毛片| 91一区二区三区在线观看| 欧美日韩亚洲综合在线 | 丁香婷婷深情五月亚洲| 色欧美片视频在线观看| 欧美日韩国产综合视频在线观看| 欧美sm极限捆绑bd| 亚洲欧美在线视频观看| 亚洲www啪成人一区二区麻豆| 麻豆91免费看| av激情综合网| 日韩三级伦理片妻子的秘密按摩| 国产日韩欧美高清在线| 亚洲午夜羞羞片| 国产精一区二区三区| 一本到不卡免费一区二区| 91麻豆精品91久久久久久清纯| 国产日韩欧美精品综合| 午夜一区二区三区在线观看| 国产福利一区二区三区视频在线| 欧美天堂亚洲电影院在线播放| 久久综合av免费| 亚洲综合免费观看高清完整版| 黄色日韩三级电影| 91官网在线观看| 国产午夜三级一区二区三| 性做久久久久久| 丁香婷婷综合色啪| 日韩欧美123| 亚洲国产日韩综合久久精品| 成人综合在线视频| 欧美一级久久久久久久大片| 亚洲免费成人av| 国产精品亚洲专一区二区三区| 欧美日韩精品综合在线| 中文字幕一区二区不卡| 久久av资源网| 欧美精品国产精品| 日韩理论片网站| 懂色av中文一区二区三区| 日韩欧美久久一区| 香蕉成人伊视频在线观看| av一区二区三区| 久久伊99综合婷婷久久伊| 亚洲国产毛片aaaaa无费看| 成人小视频在线观看| 日韩精品一区二区三区swag| 日韩高清不卡一区二区三区| 91成人免费网站| 亚洲美女一区二区三区| 高清视频一区二区| 亚洲精品在线三区| 日本欧美一区二区在线观看| 欧美三级中文字幕在线观看| 亚洲久草在线视频| 成人ar影院免费观看视频| 久久久久久久久久电影| 精品一区二区三区在线观看 | 欧美一级一区二区| 亚洲综合视频网| 在线看日本不卡| 亚洲自拍另类综合| 91丨porny丨最新| 亚洲色图第一区| 不卡欧美aaaaa| 国产精品二区一区二区aⅴ污介绍| 成人网在线免费视频| 久久久精品中文字幕麻豆发布| 精品一二线国产| 亚洲精品一区二区三区蜜桃下载| 美女一区二区视频| 日韩一区二区三区三四区视频在线观看 | 成人爱爱电影网址| 国产精品美女久久久久久2018| 欧美一级黄色片| 日韩不卡一区二区| 欧美电影免费观看完整版| 加勒比av一区二区| 久久精品欧美一区二区三区麻豆| 国产.欧美.日韩| 国产精品不卡一区二区三区| 99久久国产综合色|国产精品| 亚洲欧洲国产日韩| 色诱视频网站一区| 亚洲高清三级视频| 欧美一级欧美一级在线播放| 激情国产一区二区| 国产欧美一区二区三区在线老狼| 波多野结衣亚洲| 亚洲乱码中文字幕| 欧美日韩不卡视频| 激情久久五月天| 亚洲天天做日日做天天谢日日欢 | 亚洲精品久久久久久国产精华液| 欧美写真视频网站| 蜜臀精品久久久久久蜜臀| 久久伊人蜜桃av一区二区| 成人18精品视频| 亚洲一区二区三区爽爽爽爽爽| 制服丝袜在线91| 国产精品综合久久| 亚洲欧洲日韩女同| 欧美电影在线免费观看| 国产一区二区视频在线播放| 国产精品乱人伦中文| 91成人国产精品| 韩日av一区二区| 亚洲黄色录像片| 日韩精品自拍偷拍| av电影天堂一区二区在线| 亚洲国产欧美另类丝袜| 精品区一区二区| 91麻豆6部合集magnet| 三级久久三级久久久| 久久久久久久久久久久久夜| 91福利在线播放| 国内精品伊人久久久久影院对白| 中文字幕日韩av资源站| 欧美久久久久中文字幕| 国产suv精品一区二区6| 亚洲成人免费影院| 国产欧美日韩精品一区| 5566中文字幕一区二区电影| 成人性生交大片免费看中文网站| 日韩中文字幕不卡| 国产精品天干天干在线综合| 欧美一区二区视频网站| 波多野结衣在线一区| 日韩在线一二三区| 国产精品国产成人国产三级| 精品日韩成人av| 欧美日韩日日夜夜| 99免费精品视频| 国产伦精品一区二区三区免费迷| 亚洲二区在线观看| 中文无字幕一区二区三区| 在线播放亚洲一区| 91理论电影在线观看| 国产一区二区精品久久91| 日本怡春院一区二区| 亚洲精品精品亚洲| 国产女人aaa级久久久级 | 亚洲人成网站影音先锋播放| 精品999久久久| 欧美二区三区91| 在线观看一区日韩| av不卡一区二区三区| 国产成人亚洲精品狼色在线| 久久电影网站中文字幕| 亚洲大尺度视频在线观看| 亚洲欧洲在线观看av| 久久免费国产精品| 日韩精品一区二区三区在线播放| 欧美日韩高清不卡| 在线看国产一区| 色综合久久久久综合| 春色校园综合激情亚洲| 国产一区在线不卡| 免费成人在线观看视频| 天堂资源在线中文精品| 亚洲综合激情另类小说区| 亚洲色图.com| 亚洲视频精选在线|