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

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

?? resultgetter.java

?? 本套系統采用了業界當前最為流行的beanAction組件
?? JAVA
字號:
/*
 *  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.client.extensions;

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

/**
 * Allows values to be retrieved from the underlying result set.
 * TypeHandlerCallback implementations use this interface to
 * get values that they can subsequently manipulate before
 * having them returned.  Each of these methods has a corresponding
 * method on the ResultSet (or CallableStatement) class, the only
 * difference being that there is no need to specify the column name
 * or index with these methods.
 * <p/>
 * <b>NOTE:</b> There is no need to implement this.  The implementation
 * will be passed into the TypeHandlerCallback automatically.
 */
public interface ResultGetter {

  /**
   * Gets an array from the underlying result set
   * @return - the array
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Array getArray() throws SQLException;

  /**
   * Gets a BigDecimal from the underlying result set
   * @return - the BigDecimal
   * @throws SQLException - if the underlying result set throws an exception
   */
  public BigDecimal getBigDecimal() throws SQLException;

  /**
   * Gets a Blob from the underlying result set
   * @return - the Blob
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Blob getBlob() throws SQLException;

  /**
   * Gets a boolean from the underlying result set
   * @return - the boolean
   * @throws SQLException - if the underlying result set throws an exception
   */
  public boolean getBoolean() throws SQLException;

  /**
   * Gets a byte from the underlying result set
   * @return - the byte
   * @throws SQLException - if the underlying result set throws an exception
   */
  public byte getByte() throws SQLException;

  /**
   * Gets a byte[] from the underlying result set
   * @return - the byte[]
   * @throws SQLException - if the underlying result set throws an exception
   */
  public byte[] getBytes() throws SQLException;

  /**
   * Gets a Clob from the underlying result set
   * @return - the Clob
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Clob getClob() throws SQLException;

  /**
   * Gets a Date from the underlying result set
   * @return - the Date
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Date getDate() throws SQLException;

  /**
   * Gets a Date from the underlying result set using a calendar
   * @param cal - the Calendar
   * @return - the Date
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Date getDate(Calendar cal) throws SQLException;

  /**
   * Gets a double from the underlying result set
   * @return - the double
   * @throws SQLException - if the underlying result set throws an exception
   */
  public double getDouble() throws SQLException;

  /**
   * Gets a float from the underlying result set
   * @return - the float
   * @throws SQLException - if the underlying result set throws an exception
   */
  public float getFloat() throws SQLException;

  /**
   * Gets an int from the underlying result set
   * @return - the int
   * @throws SQLException - if the underlying result set throws an exception
   */
  public int getInt() throws SQLException;

  /**
   * Gets a long from the underlying result set
   * @return - the long
   * @throws SQLException - if the underlying result set throws an exception
   */
  public long getLong() throws SQLException;

  /**
   * Gets an Object from the underlying result set
   * @return - the Object
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Object getObject() throws SQLException;

  /**
   * Gets an Object from the underlying result set using a Map
   * @param map - the Map
   * @return - the Object
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Object getObject(Map map) throws SQLException;

  /**
   * Gets a Ref from the underlying result set
   * @return - the Ref
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Ref getRef() throws SQLException;

  /**
   * Gets a short from the underlying result set
   * @return - the short
   * @throws SQLException - if the underlying result set throws an exception
   */
  public short getShort() throws SQLException;

  /**
   * Gets a String from the underlying result set
   * @return - the String
   * @throws SQLException - if the underlying result set throws an exception
   */
  public String getString() throws SQLException;

  /**
   * Gets a Time from the underlying result set
   * @return - the Time
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Time getTime() throws SQLException;

  /**
   * Gets a Time from the underlying result set using a Calendar
   * @param cal - the Calendar
   * @return - the Time
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Time getTime(Calendar cal) throws SQLException;

  /**
   * Gets a Timestamp from the underlying result set
   * @return - the Timestamp
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Timestamp getTimestamp() throws SQLException;

  /**
   * Gets a Timestamp from the underlying result set
   * @param cal - the Calendar
   * @return - the Timestamp
   * @throws SQLException - if the underlying result set throws an exception
   */
  public Timestamp getTimestamp(Calendar cal) throws SQLException;

  /**
   * Gets a URL from the underlying result set
   * @return - the URL
   * @throws SQLException - if the underlying result set throws an exception
   */
  public URL getURL() throws SQLException;

  /**
   * Tells if the field was null
   * @return - true if it was null
   * @throws SQLException - if the underlying result set throws an exception
   */
  public boolean wasNull() throws SQLException;

  /**
   * Returns the underlying ResultSet...be careful!
   * @return a ResultSet instance.
   */
  public ResultSet getResultSet();

  /**
   * Returns the name of the column being got in the underlying ResultSet.
   * May be <code>null</code> in which case the <code>getColumnIndex</code>
   * method should be used.
   * 
   * @return the column name (may be null)
   */
  public String getColumnName();
  
  /**
   * Returns the index of the column being got in the underlying ResultSet.
   * Only use this method if the value returned from <code>getColumnName</code>
   * is null.
   * 
   * @return the index of the column (if zero then use the column name)
   */
  public int getColumnIndex();
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
av在线一区二区| 欧美日韩在线播| 国产欧美va欧美不卡在线| 韩国av一区二区三区| 日韩欧美一区在线观看| 久久电影网站中文字幕| 国产亚洲精品aa| 99在线热播精品免费| 亚洲影院久久精品| 日韩免费一区二区| 豆国产96在线|亚洲| 亚洲精品综合在线| 91超碰这里只有精品国产| 精品一二三四在线| 国产精品三级电影| 欧美日韩一区三区| 国产一区999| 一区二区三区日韩| 精品日韩成人av| 国产经典欧美精品| 亚洲一区二区不卡免费| 精品国产一区久久| 91一区二区在线观看| 日韩精品乱码免费| 国产精品欧美久久久久无广告| 色悠悠亚洲一区二区| 免费看黄色91| 综合自拍亚洲综合图不卡区| 欧美精品 日韩| 国产99久久久国产精品| 日韩影视精彩在线| 国产精品日日摸夜夜摸av| 91精品国产欧美一区二区18| 成人激情综合网站| 奇米影视在线99精品| 成人欧美一区二区三区1314| 欧美久久婷婷综合色| 成熟亚洲日本毛茸茸凸凹| 亚洲超丰满肉感bbw| 中文字幕成人网| 日韩欧美黄色影院| 色婷婷亚洲精品| 国产精品99久久久久| 日韩国产欧美在线播放| 国产精品的网站| 精品国产制服丝袜高跟| 欧美老年两性高潮| 91免费版在线| 国产激情偷乱视频一区二区三区| 亚洲1区2区3区4区| 亚洲日本欧美天堂| 国产日韩欧美一区二区三区乱码| 91精品国产91久久综合桃花 | 午夜精品久久久久久久久久| 久久久www成人免费毛片麻豆| 这里只有精品99re| 91久久国产综合久久| www.日韩在线| 国产二区国产一区在线观看| 看电视剧不卡顿的网站| 日韩av一区二区三区四区| 亚洲精品高清视频在线观看| 中文av一区特黄| 久久久777精品电影网影网| 精品免费视频.| 日韩欧美的一区| 欧美成人一区二区三区片免费| 欧美日韩视频专区在线播放| 91国产视频在线观看| 91小宝寻花一区二区三区| 波多野结衣中文字幕一区| 国产精品亚洲第一区在线暖暖韩国 | 国产日韩av一区二区| 精品卡一卡二卡三卡四在线| 91精品国产综合久久精品app| 91福利视频在线| 欧美三级电影精品| 精品视频一区二区不卡| 欧美视频在线观看一区二区| 在线一区二区观看| 欧美色视频一区| 欧美婷婷六月丁香综合色| 欧美日韩激情一区二区| 51午夜精品国产| 欧美一级免费观看| 精品成人免费观看| 久久欧美中文字幕| 国产精品麻豆99久久久久久| 亚洲女与黑人做爰| 亚洲大型综合色站| 美脚の诱脚舐め脚责91| 精品一区二区三区香蕉蜜桃| 激情欧美一区二区三区在线观看| 麻豆国产91在线播放| 国产乱码一区二区三区| av成人免费在线| 欧美亚洲国产怡红院影院| 91精品国产综合久久久久久久| 日韩一区二区在线观看视频播放| 日韩欧美成人激情| 欧美激情一二三区| 一区二区成人在线| 久久疯狂做爰流白浆xx| eeuss鲁片一区二区三区| 色噜噜狠狠成人网p站| 欧美一级日韩免费不卡| 久久九九影视网| 亚洲一级片在线观看| 91免费国产视频网站| 91精品国产一区二区三区| 2欧美一区二区三区在线观看视频| 中文字幕av一区二区三区高| 亚洲一区二区三区中文字幕| 久热成人在线视频| 99riav一区二区三区| 欧美喷潮久久久xxxxx| 国产亚洲一区二区三区在线观看 | 国产精品911| 色哟哟一区二区三区| 精品国产一区二区精华| 自拍偷拍欧美精品| 毛片av一区二区三区| 色哟哟国产精品免费观看| 日韩精品影音先锋| 亚洲精品午夜久久久| 国产在线视频一区二区| 欧美性大战久久| 久久久久久99精品| 亚洲1区2区3区4区| 91麻豆自制传媒国产之光| 欧美成人精品1314www| 一区二区在线免费| 国产一区二区三区在线观看免费| 欧美色中文字幕| 欧美激情一区二区三区全黄 | 国产美女在线观看一区| 欧美色图一区二区三区| 国产精品久久久久三级| 久久er精品视频| 欧美日韩在线不卡| 亚洲色图制服诱惑| 高清国产一区二区| 精品国产免费一区二区三区四区| 亚洲高清不卡在线| 91丨porny丨国产| 国产精品每日更新| 国产美女主播视频一区| 欧美成人精精品一区二区频| 天堂成人免费av电影一区| 91麻豆产精品久久久久久| 亚洲国产精品精华液2区45| 免费高清在线一区| 欧美一区二区三区喷汁尤物| 亚洲国产日韩a在线播放性色| 92国产精品观看| 亚洲欧洲无码一区二区三区| 成人一区二区视频| 国产亚洲精品aa午夜观看| 国产精品性做久久久久久| 久久午夜老司机| 国内外精品视频| 久久综合五月天婷婷伊人| 青草av.久久免费一区| 欧美精品丝袜久久久中文字幕| 夜夜嗨av一区二区三区中文字幕| 波多野洁衣一区| 国产精品女上位| 99re成人在线| 亚洲欧美日韩国产中文在线| 色综合久久久久综合体桃花网| 综合欧美亚洲日本| 色网站国产精品| 一区二区三区在线高清| 精品视频免费在线| 日本中文一区二区三区| 日韩欧美国产午夜精品| 精品一区二区三区久久久| 久久色.com| 成人毛片视频在线观看| 成人欧美一区二区三区黑人麻豆| 91论坛在线播放| 亚洲成av人片在线| 亚洲精品在线网站| 成人永久免费视频| 夜色激情一区二区| 亚洲大片一区二区三区| 91麻豆精品国产自产在线 | www.欧美色图| 亚洲少妇中出一区| 欧美日韩黄色影视| 国产一区二区伦理片| 中文字幕欧美一区| 欧美久久久影院| 国产一区二区三区在线观看免费视频| 国产精品色哟哟网站| 欧美日韩在线一区二区| 狠狠色丁香婷婷综合| 亚洲少妇中出一区| 日韩三级.com| 一本大道久久a久久精品综合|