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

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

?? statementwrapper.java

?? mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/* 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 com.mysql.jdbc.SQLError;import java.sql.Connection;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.SQLWarning;import java.sql.Statement;/** * Wraps statements so that errors can be reported correctly to * ConnectionEventListeners. *  * @author Mark Matthews *  * @version $Id: StatementWrapper.java,v 1.1.2.1 2005/05/13 18:58:38 mmatthews *          Exp $ */public class StatementWrapper extends WrapperBase implements Statement {	protected Statement wrappedStmt;	protected ConnectionWrapper wrappedConn;	protected StatementWrapper(ConnectionWrapper c, MysqlPooledConnection conn,			Statement toWrap) {		this.pooledConnection = conn;		this.wrappedStmt = toWrap;		this.wrappedConn = c;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getConnection()	 */	public Connection getConnection() throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedConn;			}			throw SQLError.createSQLException("Statement already closed",					SQLError.SQL_STATE_ILLEGAL_ARGUMENT);		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null; // we actually never get here, but the compiler can't						// figure		// that out	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#setCursorName(java.lang.String)	 */	public void setCursorName(String name) throws SQLException {		try {			if (this.wrappedStmt != null) {				this.wrappedStmt.setCursorName(name);			} else {				throw SQLError.createSQLException("Statement already closed",						SQLError.SQL_STATE_ILLEGAL_ARGUMENT);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#setEscapeProcessing(boolean)	 */	public void setEscapeProcessing(boolean enable) throws SQLException {		try {			if (this.wrappedStmt != null) {				this.wrappedStmt.setEscapeProcessing(enable);			} else {				throw SQLError.createSQLException("Statement already closed",						SQLError.SQL_STATE_ILLEGAL_ARGUMENT);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#setFetchDirection(int)	 */	public void setFetchDirection(int direction) throws SQLException {		try {			if (this.wrappedStmt != null) {				this.wrappedStmt.setFetchDirection(direction);			} else {				throw SQLError.createSQLException("Statement already closed",						SQLError.SQL_STATE_ILLEGAL_ARGUMENT);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getFetchDirection()	 */	public int getFetchDirection() throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedStmt.getFetchDirection();			}			throw SQLError.createSQLException("Statement already closed",					SQLError.SQL_STATE_ILLEGAL_ARGUMENT);		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return ResultSet.FETCH_FORWARD; // we actually never get here, but the										// compiler can't figure		// that out	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#setFetchSize(int)	 */	public void setFetchSize(int rows) throws SQLException {		try {			if (this.wrappedStmt != null) {				this.wrappedStmt.setFetchSize(rows);			} else {				throw SQLError.createSQLException("Statement already closed",						SQLError.SQL_STATE_ILLEGAL_ARGUMENT);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getFetchSize()	 */	public int getFetchSize() throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedStmt.getFetchSize();			}			throw SQLError.createSQLException("Statement already closed",					SQLError.SQL_STATE_ILLEGAL_ARGUMENT);		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return 0; // we actually never get here, but the compiler can't figure		// that out	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getGeneratedKeys()	 */	public ResultSet getGeneratedKeys() throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedStmt.getGeneratedKeys();			}			throw SQLError.createSQLException("Statement already closed",					SQLError.SQL_STATE_ILLEGAL_ARGUMENT);		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null; // we actually never get here, but the compiler can't						// figure		// that out	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#setMaxFieldSize(int)	 */	public void setMaxFieldSize(int max) throws SQLException {		try {			if (this.wrappedStmt != null) {				this.wrappedStmt.setMaxFieldSize(max);			} else {				throw SQLError.createSQLException("Statement already closed",						SQLError.SQL_STATE_ILLEGAL_ARGUMENT);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getMaxFieldSize()	 */	public int getMaxFieldSize() throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedStmt.getMaxFieldSize();			}			throw SQLError.createSQLException("Statement already closed",					SQLError.SQL_STATE_ILLEGAL_ARGUMENT);		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return 0; // we actually never get here, but the compiler can't figure		// that out	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#setMaxRows(int)	 */	public void setMaxRows(int max) throws SQLException {		try {			if (this.wrappedStmt != null) {				this.wrappedStmt.setMaxRows(max);			} else {				throw SQLError.createSQLException("Statement already closed",						SQLError.SQL_STATE_ILLEGAL_ARGUMENT);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getMaxRows()	 */	public int getMaxRows() throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedStmt.getMaxRows();			}			throw SQLError.createSQLException("Statement already closed",					SQLError.SQL_STATE_ILLEGAL_ARGUMENT);		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return 0; // we actually never get here, but the compiler can't figure		// that out	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getMoreResults()	 */	public boolean getMoreResults() throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedStmt.getMoreResults();			}			throw SQLError.createSQLException("Statement already closed",					SQLError.SQL_STATE_ILLEGAL_ARGUMENT);		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return false;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getMoreResults(int)	 */	public boolean getMoreResults(int current) throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedStmt.getMoreResults(current);			}			throw SQLError.createSQLException("Statement already closed",					SQLError.SQL_STATE_ILLEGAL_ARGUMENT);		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return false;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#setQueryTimeout(int)	 */	public void setQueryTimeout(int seconds) throws SQLException {		try {			if (this.wrappedStmt != null) {				this.wrappedStmt.setQueryTimeout(seconds);			} else {				throw SQLError.createSQLException("Statement already closed",						SQLError.SQL_STATE_ILLEGAL_ARGUMENT);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getQueryTimeout()	 */	public int getQueryTimeout() throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedStmt.getQueryTimeout();			}			throw SQLError.createSQLException("Statement already closed",					SQLError.SQL_STATE_ILLEGAL_ARGUMENT);		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return 0;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getResultSet()	 */	public ResultSet getResultSet() throws SQLException {		try {			if (this.wrappedStmt != null) {				ResultSet rs = this.wrappedStmt.getResultSet();				((com.mysql.jdbc.ResultSet) rs).setWrapperStatement(this);				return rs;			}			throw SQLError.createSQLException("Statement already closed",					SQLError.SQL_STATE_ILLEGAL_ARGUMENT);		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getResultSetConcurrency()	 */	public int getResultSetConcurrency() throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedStmt.getResultSetConcurrency();			}			throw SQLError.createSQLException("Statement already closed",					SQLError.SQL_STATE_ILLEGAL_ARGUMENT);		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美性一二三区| 最新中文字幕一区二区三区| 国产精品视频你懂的| 午夜在线成人av| 91在线看国产| 精品国产乱码久久久久久久久 | 在线视频一区二区免费| 亚洲精品一区二区三区四区高清 | 中文在线资源观看网站视频免费不卡 | 色婷婷激情一区二区三区| 欧美电影免费观看高清完整版在线观看| 17c精品麻豆一区二区免费| 九九九久久久精品| 日韩视频免费观看高清完整版| 一二三区精品视频| 一本色道久久综合亚洲91| 中文字幕免费不卡| 成人午夜av电影| 国产无遮挡一区二区三区毛片日本| 日本成人在线电影网| 欧美日韩第一区日日骚| 亚洲永久精品国产| 日本道免费精品一区二区三区| 国产精品视频线看| 国产在线精品一区二区| 精品999在线播放| 精品一区二区综合| 日韩欧美中文一区| 日韩成人av影视| 欧美精品亚洲一区二区在线播放| 亚洲精品高清在线| 一本一本久久a久久精品综合麻豆| 亚洲欧洲日韩综合一区二区| 丁香啪啪综合成人亚洲小说| 久久免费看少妇高潮| 国产在线精品国自产拍免费| 欧美xfplay| 国产精品一区久久久久| 日本一区二区视频在线观看| 粉嫩欧美一区二区三区高清影视| 国产日韩精品视频一区| 91亚洲精华国产精华精华液| 最新日韩在线视频| 在线观看www91| 日韩国产欧美在线播放| 日韩视频免费直播| 国产不卡免费视频| 亚洲精品免费电影| 欧美日本精品一区二区三区| 免费在线视频一区| 亚洲精品在线免费观看视频| 国产成人av一区二区三区在线| 国产精品久久久爽爽爽麻豆色哟哟| 99re在线视频这里只有精品| 午夜激情一区二区| 久久久一区二区三区捆绑**| 色综合久久综合网97色综合| 亚洲第一狼人社区| 久久蜜桃av一区精品变态类天堂| 91丝袜美腿高跟国产极品老师 | 国产精品人成在线观看免费| 在线观看亚洲精品| 日韩国产精品久久| 国产精品区一区二区三区| 欧美三级中文字幕在线观看| 久久99精品久久久久久| 国产精品传媒视频| 欧美一区二区三区白人| 国产成人精品影视| 亚洲国产日韩综合久久精品| 亚洲精品在线免费观看视频| 色婷婷久久久综合中文字幕 | 久久影院午夜论| 91婷婷韩国欧美一区二区| 蜜桃av一区二区在线观看| 欧美国产成人精品| 日韩欧美一区二区三区在线| 97久久人人超碰| 久久97超碰色| 天天色 色综合| 欧美激情一区三区| 日韩午夜在线影院| 在线观看国产精品网站| 成人性生交大片免费看中文| 免费在线观看视频一区| 一区在线观看免费| 久久久精品日韩欧美| 91麻豆精品国产91久久久使用方法 | 午夜视频一区二区| 亚洲欧洲日产国码二区| 精品久久久久久久久久久院品网| 欧美亚洲高清一区| 91麻豆高清视频| 懂色av一区二区三区蜜臀| 午夜av一区二区三区| 亚洲视频综合在线| 国产午夜精品理论片a级大结局| 欧美一区二区三区的| 欧美亚日韩国产aⅴ精品中极品| 成人动漫一区二区在线| 国模冰冰炮一区二区| 午夜亚洲国产au精品一区二区| 中文字幕亚洲不卡| 国产精品入口麻豆原神| 亚洲精品在线电影| 日韩欧美成人一区二区| 欧美一区二区三区性视频| 成a人片亚洲日本久久| 国产91综合网| 国产成人精品亚洲午夜麻豆| 国产露脸91国语对白| 国产乱码精品一区二区三区忘忧草| 免费在线观看不卡| 奇米精品一区二区三区四区| 婷婷六月综合亚洲| 日韩av高清在线观看| 日韩中文字幕亚洲一区二区va在线| 亚洲国产人成综合网站| 日韩精彩视频在线观看| 日韩不卡一区二区三区| 蜜臀久久久久久久| 国产一区 二区| 国产成人午夜视频| 成人综合婷婷国产精品久久免费| 不卡电影一区二区三区| 色欧美乱欧美15图片| 欧美日韩一区二区不卡| 制服丝袜av成人在线看| 欧美成人一区二区三区| 久久精品视频免费观看| 中文字幕不卡一区| 一区二区不卡在线播放| 日韩黄色小视频| 国产精品正在播放| 日本乱码高清不卡字幕| 欧美视频在线播放| 日韩一区二区电影| 国产欧美精品在线观看| 亚洲精品视频免费看| 午夜成人免费视频| 国内精品伊人久久久久影院对白| 国产大片一区二区| 91麻豆国产自产在线观看| 欧美片网站yy| 久久伊人中文字幕| 一区二区三区在线免费观看 | 欧美一级爆毛片| 国产视频一区二区在线| 一区二区成人在线视频 | av不卡免费在线观看| 欧美日韩精品电影| 国产亚洲视频系列| 爽好久久久欧美精品| 国产精品一区三区| 欧美日韩精品一区二区天天拍小说| 欧美美女一区二区在线观看| 久久免费国产精品| 亚洲国产精品一区二区久久| 狠狠色丁香婷综合久久| 色噜噜久久综合| 久久久亚洲午夜电影| 亚洲成精国产精品女| 成人开心网精品视频| 久久久久九九视频| 亚洲欧美怡红院| 国产精品正在播放| 91精品免费观看| 国产精品久久久久aaaa樱花 | 日韩精品国产精品| 91麻豆福利精品推荐| 久久久91精品国产一区二区精品| 亚洲综合一二区| 成人高清av在线| 久久久久久久一区| 午夜精品一区二区三区免费视频| 成人网男人的天堂| 精品国产99国产精品| 夜夜精品视频一区二区| 国产精品一区二区无线| 欧美精品在线观看播放| 一区二区三区在线影院| 国产美女视频一区| 日韩欧美你懂的| 天堂av在线一区| 欧美日韩一区二区三区在线看| 亚洲美女偷拍久久| a亚洲天堂av| 中文字幕av一区二区三区| 国产制服丝袜一区| 久久一夜天堂av一区二区三区| 天堂午夜影视日韩欧美一区二区| 97久久久精品综合88久久| 国产精品久久看| 91网站在线观看视频| 日本一区二区三区视频视频| 国产尤物一区二区| 久久久一区二区| 奇米四色…亚洲| 欧美久久久久免费| 亚洲成人动漫av|