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

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

?? callablestatementresultset.java

?? 本套系統(tǒng)采用了業(yè)界當(dāng)前最為流行的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);
  }

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本韩国欧美一区二区三区| 日韩精品一区二区三区视频| 日本色综合中文字幕| 欧美激情一区三区| 日韩欧美另类在线| 在线观看一区二区精品视频| 国产成人在线观看| 美女高潮久久久| 一区二区日韩av| 国产欧美精品区一区二区三区| 欧美伊人久久久久久午夜久久久久| 国产精品亚洲а∨天堂免在线| 亚洲va韩国va欧美va| 国产精品久久久久久妇女6080| 日韩一区二区三区三四区视频在线观看| 色婷婷亚洲精品| 不卡视频在线看| 国产黄人亚洲片| 国内一区二区在线| 琪琪一区二区三区| 日韩中文字幕1| 一区二区三区四区蜜桃| 国产精品久久久久久久久久久免费看 | 日本一区二区三区四区在线视频| 欧美一区二区久久久| 欧美少妇bbb| 欧美最新大片在线看| 色综合欧美在线| 暴力调教一区二区三区| 国产99精品在线观看| 国产精品一区免费在线观看| 久久99精品国产| 麻豆国产精品官网| 秋霞国产午夜精品免费视频| 午夜精品福利视频网站| 亚洲国产精品一区二区尤物区| 亚洲乱码国产乱码精品精小说| 国产精品视频一二三区| 欧美激情一区二区三区不卡| 国产精品女主播av| 国产精品国产自产拍高清av王其 | 天天免费综合色| 日韩高清欧美激情| 日本视频一区二区| 久久69国产一区二区蜜臀| 日本欧美肥老太交大片| 麻豆国产精品777777在线| 精品综合久久久久久8888| 狠狠色丁香婷婷综合| 国产一区二区三区不卡在线观看| 国模套图日韩精品一区二区 | 精品在线一区二区三区| 美女脱光内衣内裤视频久久网站 | 日韩精品一区二区三区视频播放| 日韩欧美国产午夜精品| 久久久午夜电影| 国产精品人妖ts系列视频| 亚洲欧洲性图库| 亚洲观看高清完整版在线观看| 天天色天天操综合| 欧美午夜精品免费| 欧美一级免费大片| 久久亚洲一区二区三区四区| 国产午夜亚洲精品羞羞网站| 国产精品乱码一区二区三区软件| 一区二区视频免费在线观看| 午夜激情久久久| 国产成人综合亚洲网站| 色综合天天性综合| 欧美一区二区大片| 国产欧美1区2区3区| 亚洲精品国产一区二区三区四区在线 | 91玉足脚交白嫩脚丫在线播放| 在线视频欧美精品| 精品免费国产二区三区| 成人免费小视频| 日韩国产一区二| 国产成人精品免费网站| 在线观看日韩电影| 欧美v日韩v国产v| 中文字幕一区三区| 日韩制服丝袜av| 成人av在线网站| 91精品国产综合久久久蜜臀图片| 国产亚洲精品免费| 亚洲福利一区二区| 国产成人av影院| 欧美在线观看视频在线| 2020国产精品| 亚洲福利一区二区三区| 国产xxx精品视频大全| 在线综合+亚洲+欧美中文字幕| 国产精品美日韩| 免费视频最近日韩| 91免费精品国自产拍在线不卡| 欧美xxxx在线观看| 亚洲免费大片在线观看| 国产综合色产在线精品| 欧美色电影在线| 国产精品国产自产拍高清av| 久久99精品国产麻豆婷婷洗澡| 欧美性做爰猛烈叫床潮| 欧美激情一区在线观看| 美国精品在线观看| 欧美色爱综合网| 中文字幕一区二区三区在线观看 | 日本大胆欧美人术艺术动态| 97久久精品人人做人人爽| 久久尤物电影视频在线观看| 偷拍日韩校园综合在线| 91色九色蝌蚪| 欧美激情综合在线| 激情五月激情综合网| 69堂亚洲精品首页| 亚洲尤物视频在线| av亚洲精华国产精华| 国产欧美精品区一区二区三区 | 日韩激情视频在线观看| 色8久久精品久久久久久蜜| 国产日韩欧美制服另类| 国产真实乱偷精品视频免| 日韩欧美一区二区视频| 亚洲成人福利片| 在线观看亚洲成人| 亚洲蜜臀av乱码久久精品蜜桃| 国产99久久久国产精品免费看 | 美美哒免费高清在线观看视频一区二区 | 国产欧美综合在线观看第十页| 午夜精品久久久久久久久| 欧美日韩成人综合在线一区二区| 一区二区三区精密机械公司| 色av一区二区| 亚洲综合色区另类av| 色8久久人人97超碰香蕉987| 亚洲一区二区三区三| 欧美色综合网站| 午夜激情久久久| 日韩欧美你懂的| 精品一区二区日韩| 久久亚洲精品国产精品紫薇| 国产一区二区0| 欧美国产一区在线| 99久久夜色精品国产网站| 国产精品家庭影院| 色狠狠桃花综合| 日韩电影在线一区| 久久综合色鬼综合色| 大陆成人av片| 亚洲精品免费电影| 91精品国产麻豆| 久久97超碰国产精品超碰| 久久婷婷久久一区二区三区| 国产乱对白刺激视频不卡| 2欧美一区二区三区在线观看视频| 国产成人在线看| 中文字幕日韩欧美一区二区三区| 成人三级在线视频| 久久久久久电影| 一本色道久久综合亚洲aⅴ蜜桃| 成人欧美一区二区三区1314| 91在线免费视频观看| 国产日韩欧美亚洲| www.色精品| 亚洲精品美腿丝袜| 欧美日韩mp4| 高清在线观看日韩| 欧美国产成人在线| 91丝袜国产在线播放| 亚洲自拍偷拍网站| 久久影视一区二区| 成人精品鲁一区一区二区| 亚洲欧美影音先锋| 成人高清视频免费观看| 亚洲成在人线在线播放| 欧美日本在线播放| 久久99最新地址| 欧美一区二区三区小说| 国产精品一区二区久久精品爱涩| 亚洲国产精品av| 欧美日韩精品一区二区三区| 日本成人在线视频网站| 国产欧美日韩亚州综合| 91亚洲国产成人精品一区二区三| 午夜精品在线视频一区| 久久嫩草精品久久久精品一| 色综合天天狠狠| 久久99精品久久久久久| 亚洲一本大道在线| 久久伊人中文字幕| 色成年激情久久综合| 国产精品99久久不卡二区| 亚洲天堂网中文字| 欧美一区二区三区在| 成人精品免费网站| 日韩二区三区四区| 亚洲丝袜自拍清纯另类| 欧美亚洲综合色| 成人va在线观看| 蜜臀va亚洲va欧美va天堂| 亚洲视频一区在线观看|