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

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

?? preparedstatementwrapper.java

?? mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序
?? 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.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.Clob;import java.sql.Date;import java.sql.ParameterMetaData;import java.sql.PreparedStatement;import java.sql.Ref;import java.sql.ResultSet;import java.sql.ResultSetMetaData;import java.sql.SQLException;import java.sql.Time;import java.sql.Timestamp;import java.util.Calendar;/** * Wraps prepared statements so that errors can be reported correctly to * ConnectionEventListeners. *  * @author Mark Matthews *  * @version $Id: PreparedStatementWrapper.java,v 1.1.2.1 2005/05/13 18:58:38 *          mmatthews Exp $ */public class PreparedStatementWrapper extends StatementWrapper implements		PreparedStatement {	PreparedStatementWrapper(ConnectionWrapper c, MysqlPooledConnection conn,			PreparedStatement toWrap) {		super(c, conn, toWrap);	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.PreparedStatement#setArray(int, java.sql.Array)	 */	public void setArray(int parameterIndex, Array x) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setArray(parameterIndex,						x);			} 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.PreparedStatement#setAsciiStream(int, java.io.InputStream,	 *      int)	 */	public void setAsciiStream(int parameterIndex, InputStream x, int length)			throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setAsciiStream(						parameterIndex, x, length);			} 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.PreparedStatement#setBigDecimal(int, java.math.BigDecimal)	 */	public void setBigDecimal(int parameterIndex, BigDecimal x)			throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setBigDecimal(						parameterIndex, x);			} 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.PreparedStatement#setBinaryStream(int, java.io.InputStream,	 *      int)	 */	public void setBinaryStream(int parameterIndex, InputStream x, int length)			throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setBinaryStream(						parameterIndex, x, length);			} 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.PreparedStatement#setBlob(int, java.sql.Blob)	 */	public void setBlob(int parameterIndex, Blob x) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setBlob(parameterIndex,						x);			} 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.PreparedStatement#setBoolean(int, boolean)	 */	public void setBoolean(int parameterIndex, boolean x) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setBoolean(						parameterIndex, x);			} 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.PreparedStatement#setByte(int, byte)	 */	public void setByte(int parameterIndex, byte x) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setByte(parameterIndex,						x);			} 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.PreparedStatement#setBytes(int, byte[])	 */	public void setBytes(int parameterIndex, byte[] x) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setBytes(parameterIndex,						x);			} 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.PreparedStatement#setCharacterStream(int, java.io.Reader,	 *      int)	 */	public void setCharacterStream(int parameterIndex, Reader reader, int length)			throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setCharacterStream(						parameterIndex, reader, length);			} 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.PreparedStatement#setClob(int, java.sql.Clob)	 */	public void setClob(int parameterIndex, Clob x) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setClob(parameterIndex,						x);			} 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.PreparedStatement#setDate(int, java.sql.Date)	 */	public void setDate(int parameterIndex, Date x) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setDate(parameterIndex,						x);			} 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.PreparedStatement#setDate(int, java.sql.Date,	 *      java.util.Calendar)	 */	public void setDate(int parameterIndex, Date x, Calendar cal)			throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setDate(parameterIndex,						x, cal);			} 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.PreparedStatement#setDouble(int, double)	 */	public void setDouble(int parameterIndex, double x) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setDouble(						parameterIndex, x);			} 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.PreparedStatement#setFloat(int, float)	 */	public void setFloat(int parameterIndex, float x) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setFloat(parameterIndex,						x);			} 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.PreparedStatement#setInt(int, int)	 */	public void setInt(int parameterIndex, int x) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt)						.setInt(parameterIndex, x);			} 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.PreparedStatement#setLong(int, long)	 */	public void setLong(int parameterIndex, long x) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setLong(parameterIndex,						x);			} 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.PreparedStatement#getMetaData()	 */	public ResultSetMetaData getMetaData() throws SQLException {		try {			if (this.wrappedStmt != null) {				return ((PreparedStatement) this.wrappedStmt).getMetaData();			}			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.PreparedStatement#setNull(int, int)	 */	public void setNull(int parameterIndex, int sqlType) throws SQLException {		try {			if (this.wrappedStmt != null) {				((PreparedStatement) this.wrappedStmt).setNull(parameterIndex,						sqlType);			} else {				throw SQLError.createSQLException(

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国内精品久久久久影院薰衣草 | 日韩美女啊v在线免费观看| 免费人成网站在线观看欧美高清| 色8久久人人97超碰香蕉987| 亚洲黄色小说网站| 日本久久电影网| 亚洲一二三专区| 777久久久精品| 奇米精品一区二区三区在线观看 | 一本色道久久加勒比精品| 国产精品成人午夜| 欧美丝袜丝交足nylons| 青草国产精品久久久久久| 亚洲精品一区二区三区四区高清| 久久99精品国产91久久来源| 国产亚洲精品久| 一本大道久久a久久精品综合| 亚洲成人精品影院| 欧美sm极限捆绑bd| 99久久精品情趣| 亚洲福利电影网| 精品国产精品网麻豆系列| 9久草视频在线视频精品| 亚洲图片欧美色图| 亚洲精品一区二区三区精华液 | 精品粉嫩aⅴ一区二区三区四区| 国产精品99久久久| 亚洲黄色免费电影| 精品黑人一区二区三区久久| 91在线视频网址| 性做久久久久久免费观看欧美| 久久综合资源网| 91久久香蕉国产日韩欧美9色| 美女网站一区二区| 亚洲嫩草精品久久| 久久久精品综合| 欧美午夜不卡视频| 国产成人亚洲综合a∨婷婷| 亚洲高清免费在线| 国产精品久久久久久久久免费桃花| 欧美日韩精品专区| 成人精品视频.| 美女性感视频久久| 亚洲成av人片在线观看无码| 亚洲国产高清在线观看视频| 欧美久久婷婷综合色| 成人av电影观看| 精品一区二区国语对白| 樱桃国产成人精品视频| 欧美韩日一区二区三区| 欧美成人伊人久久综合网| 精品视频色一区| 成人a免费在线看| 狠狠色丁香婷婷综合| 午夜视黄欧洲亚洲| 亚洲精品亚洲人成人网| 中文成人综合网| 日韩欧美区一区二| 在线不卡的av| 欧美午夜寂寞影院| 在线亚洲精品福利网址导航| 成人黄页在线观看| 国产iv一区二区三区| 国产精品一区二区三区网站| 毛片一区二区三区| 日韩精品亚洲一区二区三区免费| 一区二区三区不卡视频在线观看 | 国产精品久久夜| 久久午夜色播影院免费高清 | 国内精品久久久久影院薰衣草| 亚洲第一激情av| 亚洲一区二区三区四区五区黄| 中文字幕一区二区在线播放| 久久精品亚洲精品国产欧美| 26uuu亚洲综合色| 欧美电影免费提供在线观看| 欧美一级片在线看| 91精品国产手机| 欧美一级精品在线| 欧美一区二区三区白人| 欧美人动与zoxxxx乱| 欧美视频精品在线观看| 欧美性大战久久| 欧美午夜在线观看| 欧美日韩精品电影| 欧美顶级少妇做爰| 3751色影院一区二区三区| 日韩一区二区三区av| 日韩一二三区视频| 久久综合av免费| 日本一区二区免费在线| 国产精品久久毛片| 亚洲欧美成aⅴ人在线观看| 亚洲激情一二三区| 午夜国产精品一区| 蜜桃一区二区三区在线| 久久精品国产澳门| 国产乱码精品一品二品| 成人免费毛片aaaaa**| 91蜜桃在线免费视频| 欧美美女视频在线观看| 精品少妇一区二区三区在线播放 | 国产69精品一区二区亚洲孕妇| zzijzzij亚洲日本少妇熟睡| 91视视频在线观看入口直接观看www | 日本韩国精品一区二区在线观看| 91黄色激情网站| 欧美高清视频在线高清观看mv色露露十八 | 精品污污网站免费看| 91精品国产福利| 中文无字幕一区二区三区| 亚洲欧美日韩在线| 日韩中文字幕1| 国产精品一二三在| 在线观看视频一区二区| 欧美一级黄色大片| 一区二区中文视频| 天天综合网天天综合色| 国产米奇在线777精品观看| av在线免费不卡| 成人免费一区二区三区视频| 日韩电影一二三区| 成人app在线| 91精品国产91综合久久蜜臀| 国产精品剧情在线亚洲| 污片在线观看一区二区| 成人一级黄色片| 制服丝袜亚洲色图| 亚洲欧洲另类国产综合| 免费视频一区二区| 91理论电影在线观看| 国产精品黄色在线观看| 青青草原综合久久大伊人精品优势| 国产成人综合视频| 欧美军同video69gay| 国产精品电影院| 麻豆91精品视频| 在线观看精品一区| 欧美韩日一区二区三区四区| 免费欧美高清视频| 在线观看av一区二区| 日本一区二区三区在线观看| 另类专区欧美蜜桃臀第一页| 欧美在线视频日韩| 中文字幕一区二区在线播放| 国产麻豆一精品一av一免费| 欧美精品v国产精品v日韩精品| 亚洲欧美经典视频| 国产一区 二区| 精品免费视频.| 视频精品一区二区| 在线亚洲免费视频| 亚洲欧美欧美一区二区三区| 成人免费视频播放| 国产午夜精品久久| 国产麻豆精品一区二区| 欧美一区二区久久| 婷婷成人综合网| 欧美日韩亚洲国产综合| 一区二区三区资源| 99久久er热在这里只有精品15| 国产三区在线成人av| 国产一区二区三区在线观看精品 | 国产剧情av麻豆香蕉精品| 正在播放亚洲一区| 首页国产欧美日韩丝袜| 欧美人与性动xxxx| 日韩av在线播放中文字幕| 欧美日韩国产成人在线免费| 亚洲电影你懂得| 欧美性一二三区| 无码av中文一区二区三区桃花岛| 欧美色图片你懂的| 五月天欧美精品| 3atv一区二区三区| 久久国产尿小便嘘嘘| 欧美大白屁股肥臀xxxxxx| 久久精品国产精品亚洲精品| 精品国精品国产尤物美女| 精品一区二区三区免费视频| 精品国产免费视频| 国产丶欧美丶日本不卡视频| 国产偷v国产偷v亚洲高清| 成人伦理片在线| 亚洲精品自拍动漫在线| 在线观看网站黄不卡| 丝袜美腿高跟呻吟高潮一区| 日韩一卡二卡三卡国产欧美| 久草这里只有精品视频| 国产亚洲精品免费| 色噜噜狠狠一区二区三区果冻| 亚洲午夜羞羞片| 日韩三级免费观看| 国产精品主播直播| 综合久久国产九一剧情麻豆| 欧美性xxxxxx少妇| 久久成人精品无人区| 国产精品日韩精品欧美在线| 色狠狠一区二区三区香蕉| 日韩精品91亚洲二区在线观看|