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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? callablestatementwrapper.java

?? mysql jdbc驅(qū)動(dòng)程序 mysql jdbc驅(qū)動(dòng)程序 mysql jdbc驅(qū)動(dòng)程序 mysql jdbc驅(qū)動(dòng)程序
?? JAVA
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/* Copyright (C) 2002-2004 MySQL AB This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as  published by the Free Software Foundation. There are special exceptions to the terms and conditions of the GPL  as it is applied to this software. View the full text of the  exception in file EXCEPTIONS-CONNECTOR-J in the directory of this  software distribution. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package com.mysql.jdbc.jdbc2.optional;import java.io.InputStream;import java.io.Reader;import java.math.BigDecimal;import java.net.URL;import java.sql.Array;import java.sql.Blob;import java.sql.CallableStatement;import java.sql.Clob;import java.sql.Date;import java.sql.PreparedStatement;import java.sql.Ref;import java.sql.SQLException;import java.sql.Time;import java.sql.Timestamp;import java.util.Calendar;import java.util.Map;import com.mysql.jdbc.SQLError;/** * Wraps callable statements created by pooled connections. *  * @version $Id: CallableStatementWrapper.java,v 1.1.2.1 2005/05/13 18:58:38 *          mmatthews Exp $ */public class CallableStatementWrapper extends PreparedStatementWrapper		implements CallableStatement {	/**	 * @param c	 * @param conn	 * @param toWrap	 */	public CallableStatementWrapper(ConnectionWrapper c,			MysqlPooledConnection conn, CallableStatement toWrap) {		super(c, conn, toWrap);	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#registerOutParameter(int, int)	 */	public void registerOutParameter(int parameterIndex, int sqlType)			throws SQLException {		try {			if (this.wrappedStmt != null) {				((CallableStatement) this.wrappedStmt).registerOutParameter(						parameterIndex, sqlType);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#registerOutParameter(int, int, int)	 */	public void registerOutParameter(int parameterIndex, int sqlType, int scale)			throws SQLException {		try {			if (this.wrappedStmt != null) {				((CallableStatement) this.wrappedStmt).registerOutParameter(						parameterIndex, sqlType, scale);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#wasNull()	 */	public boolean wasNull() throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt).wasNull();			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return false;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getString(int)	 */	public String getString(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getString(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getBoolean(int)	 */	public boolean getBoolean(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getBoolean(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return false;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getByte(int)	 */	public byte getByte(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getByte(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return 0;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getShort(int)	 */	public short getShort(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getShort(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return 0;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getInt(int)	 */	public int getInt(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getInt(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return 0;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getLong(int)	 */	public long getLong(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getLong(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return 0;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getFloat(int)	 */	public float getFloat(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getFloat(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return 0;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getDouble(int)	 */	public double getDouble(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getDouble(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return 0;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getBigDecimal(int, int)	 */	public BigDecimal getBigDecimal(int parameterIndex, int scale)			throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt).getBigDecimal(						parameterIndex, scale);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getBytes(int)	 */	public byte[] getBytes(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getBytes(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getDate(int)	 */	public Date getDate(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getDate(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getTime(int)	 */	public Time getTime(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getTime(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getTimestamp(int)	 */	public Timestamp getTimestamp(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getTimestamp(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getObject(int)	 */	public Object getObject(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getObject(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getBigDecimal(int)	 */	public BigDecimal getBigDecimal(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getBigDecimal(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getObject(int, java.util.Map)	 */	public Object getObject(int parameterIndex, Map typeMap)			throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt).getObject(						parameterIndex, typeMap);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getRef(int)	 */	public Ref getRef(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getRef(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getBlob(int)	 */	public Blob getBlob(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getBlob(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getClob(int)	 */	public Clob getClob(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getClob(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getArray(int)	 */	public Array getArray(int parameterIndex) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt)						.getArray(parameterIndex);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.CallableStatement#getDate(int, java.util.Calendar)	 */	public Date getDate(int parameterIndex, Calendar cal) throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((CallableStatement) this.wrappedStmt).getDate(						parameterIndex, cal);			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久毛片a| 一区二区激情视频| 欧美性xxxxxxxx| 国内精品国产三级国产a久久| 国产精品国产馆在线真实露脸| 色婷婷av一区二区三区之一色屋| 精品午夜久久福利影院| 亚洲另类一区二区| 国产欧美视频一区二区三区| 欧美一区二区精品在线| 97久久精品人人澡人人爽| 国产一区美女在线| 午夜精品视频一区| 亚洲精品视频在线观看网站| 精品成人佐山爱一区二区| 欧美日韩第一区日日骚| 91影院在线观看| 国产精品主播直播| 美女性感视频久久| 日本亚洲一区二区| 亚洲成av人片在线观看无码| 国产精品美女久久久久av爽李琼| 欧美精品一区二区三区视频| 欧美一区二区在线免费播放 | 亚洲国产精品视频| 国产精品欧美久久久久一区二区| 日韩欧美123| 欧美美女网站色| 欧美日韩一区高清| 在线视频你懂得一区二区三区| 成人动漫一区二区| 国产91在线|亚洲| 国产永久精品大片wwwapp| 麻豆精品久久久| 日韩国产欧美在线视频| 调教+趴+乳夹+国产+精品| 亚洲最大成人网4388xx| 亚洲视频免费看| 亚洲天堂免费看| 最新国产精品久久精品| 日本一二三四高清不卡| 国产视频视频一区| 国产女主播一区| 国产网站一区二区| 国产婷婷一区二区| 欧美激情资源网| 国产精品乱码一区二区三区软件| 国产农村妇女毛片精品久久麻豆 | 色综合久久久久综合| 色综合久久六月婷婷中文字幕| 91香蕉视频在线| 91小视频在线观看| 欧美日韩性生活| 日韩三级视频在线看| 精品国产一区二区三区av性色| 久久综合色播五月| 日本一区二区成人在线| 亚洲欧美日韩一区| 亚洲va国产va欧美va观看| 日韩电影网1区2区| 国内精品久久久久影院薰衣草| 国产成人精品影视| 色综合天天综合网国产成人综合天 | 99久久777色| 欧美色视频在线| 欧美一激情一区二区三区| 精品91自产拍在线观看一区| 国产清纯美女被跳蛋高潮一区二区久久w| 国产亚洲精品资源在线26u| 1区2区3区国产精品| 亚洲综合丁香婷婷六月香| 日韩黄色免费电影| 国产精品 欧美精品| 色综合久久天天综合网| 欧美一级高清片在线观看| 久久久久国产精品人| 亚洲欧美另类图片小说| 日韩成人免费在线| 不卡的电视剧免费网站有什么| 在线视频欧美区| 久久婷婷综合激情| 一区二区三区中文在线| 玖玖九九国产精品| 99精品视频在线免费观看| 5566中文字幕一区二区电影| 久久免费看少妇高潮| 亚洲一区中文日韩| 国产精品主播直播| 欧美日韩国产经典色站一区二区三区| 欧美精品一区二区久久婷婷| 亚洲欧美日韩一区二区三区在线观看| 免费在线成人网| 91在线视频播放地址| 欧美va亚洲va国产综合| 亚洲精品欧美激情| 国产中文一区二区三区| 欧美伊人久久大香线蕉综合69 | 欧美一区二区不卡视频| 国产精品久久夜| 奇米在线7777在线精品| 91亚洲国产成人精品一区二区三| 日韩视频免费观看高清完整版| 亚洲私人黄色宅男| 国产乱子轮精品视频| 欧美日韩情趣电影| 成人免费一区二区三区在线观看 | 国产尤物一区二区在线| 欧美日韩在线观看一区二区| 国产精品久久午夜夜伦鲁鲁| 麻豆久久久久久久| 欧美性猛交xxxxxxxx| 国产精品热久久久久夜色精品三区| 日韩专区欧美专区| 日本高清成人免费播放| 中文字幕不卡在线| 国产一区二区在线看| 91精品国产91久久综合桃花| 亚洲色图在线播放| 国产69精品久久777的优势| 日韩欧美黄色影院| 亚洲成人精品在线观看| 色婷婷久久久久swag精品| 中文成人综合网| 国产一区二区剧情av在线| 欧美成人a在线| 日本欧美久久久久免费播放网| 一本大道av伊人久久综合| 国产精品久久久久婷婷二区次| 美日韩一区二区| 69堂成人精品免费视频| 亚洲成人自拍一区| 欧美日韩精品一区二区天天拍小说| 亚洲人成人一区二区在线观看 | 日韩精品在线一区二区| 青青草原综合久久大伊人精品优势 | 国产精品 欧美精品| www精品美女久久久tv| 美洲天堂一区二卡三卡四卡视频| 欧美日本在线播放| 亚洲小少妇裸体bbw| 欧美中文字幕一区二区三区亚洲| 一区二区三区在线视频免费观看| av在线播放成人| 一区在线观看视频| 99精品欧美一区二区蜜桃免费| 国产精品水嫩水嫩| 色哟哟在线观看一区二区三区| 国产精品久久久久精k8| 99国产欧美久久久精品| 亚洲日本va在线观看| 91麻豆高清视频| 亚洲高清视频的网址| 欧美日韩在线播放三区| 日本不卡视频在线| 精品国产髙清在线看国产毛片| 国精产品一区一区三区mba桃花| 久久综合五月天婷婷伊人| 风流少妇一区二区| 亚洲欧美另类小说视频| 欧美日韩在线三区| 蜜桃视频一区二区三区| 久久久久青草大香线综合精品| 国产成人日日夜夜| 亚洲三级小视频| 欧美理论在线播放| 久久 天天综合| 国产精品国产三级国产普通话三级| av不卡免费电影| 午夜视频一区二区| 国产性天天综合网| 91麻豆精品一区二区三区| 日韩激情视频网站| 国产欧美综合在线| 欧美视频在线一区| 韩国女主播一区| 亚洲女与黑人做爰| 欧美mv和日韩mv国产网站| 成人av在线观| 免费看日韩a级影片| 国产精品成人免费精品自在线观看| 91国偷自产一区二区开放时间| 欧美aⅴ一区二区三区视频| 国产午夜精品一区二区三区四区| 欧美专区日韩专区| 国产福利不卡视频| 日韩中文字幕亚洲一区二区va在线| 久久婷婷色综合| 欧美性色欧美a在线播放| 国内久久精品视频| 亚洲一区二区三区中文字幕在线| 欧美电视剧免费全集观看| 色狠狠一区二区三区香蕉| 国产在线精品一区二区不卡了| 亚洲精品视频在线看| 久久久电影一区二区三区| 69堂成人精品免费视频| 91视频com| 国产一区二区久久| 日本伊人精品一区二区三区观看方式| 国产精品国产三级国产普通话99|