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

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

?? connection.java

?? mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
/* Copyright (C) 2002-2007 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;import com.mysql.jdbc.log.Log;import com.mysql.jdbc.log.LogFactory;import com.mysql.jdbc.log.NullLogger;import com.mysql.jdbc.profiler.ProfileEventSink;import com.mysql.jdbc.profiler.ProfilerEvent;import com.mysql.jdbc.util.LRUCache;import java.io.IOException;import java.io.InputStream;import java.io.Reader;import java.io.UnsupportedEncodingException;import java.lang.reflect.Array;import java.lang.reflect.Constructor;import java.lang.reflect.Method;import java.math.BigDecimal;import java.net.URL;import java.sql.Blob;import java.sql.Clob;import java.sql.Date;import java.sql.ParameterMetaData;import java.sql.Ref;import java.sql.SQLException;import java.sql.SQLWarning;import java.sql.Savepoint;import java.sql.Time;import java.sql.Timestamp;import java.util.ArrayList;import java.util.Calendar;import java.util.GregorianCalendar;import java.util.HashMap;import java.util.Hashtable;import java.util.Iterator;import java.util.List;import java.util.Locale;import java.util.Map;import java.util.Properties;import java.util.Stack;import java.util.StringTokenizer;import java.util.TimeZone;import java.util.Timer;import java.util.TreeMap;/** * A Connection represents a session with a specific database. Within the * context of a Connection, SQL statements are executed and results are * returned. * <P> * A Connection's database is able to provide information describing its tables, * its supported SQL grammar, its stored procedures, the capabilities of this * connection, etc. This information is obtained with the getMetaData method. * </p> *  * @author Mark Matthews * @version $Id: Connection.java 6599 2007-10-02 22:34:20Z mmatthews $ * @see java.sql.Connection */public class Connection extends ConnectionProperties implements		java.sql.Connection {	private static final String JDBC_LOCAL_CHARACTER_SET_RESULTS = "jdbc.local.character_set_results";	/**	 * Used as a key for caching callable statements which (may) depend on	 * current catalog...In 5.0.x, they don't (currently), but stored procedure	 * names soon will, so current catalog is a (hidden) component of the name.	 */	class CompoundCacheKey {		String componentOne;		String componentTwo;		int hashCode;		CompoundCacheKey(String partOne, String partTwo) {			this.componentOne = partOne;			this.componentTwo = partTwo;			// Handle first component (in most cases, currentCatalog)			// being NULL....			this.hashCode = (((this.componentOne != null) ? this.componentOne					: "") + this.componentTwo).hashCode();		}		/*		 * (non-Javadoc)		 * 		 * @see java.lang.Object#equals(java.lang.Object)		 */		public boolean equals(Object obj) {			if (obj instanceof CompoundCacheKey) {				CompoundCacheKey another = (CompoundCacheKey) obj;				boolean firstPartEqual = false;				if (this.componentOne == null) {					firstPartEqual = (another.componentOne == null);				} else {					firstPartEqual = this.componentOne							.equals(another.componentOne);				}				return (firstPartEqual && this.componentTwo						.equals(another.componentTwo));			}			return false;		}		/*		 * (non-Javadoc)		 * 		 * @see java.lang.Object#hashCode()		 */		public int hashCode() {			return this.hashCode;		}	}	/**	 * Wrapper class for UltraDev CallableStatements that are really	 * PreparedStatments. Nice going, UltraDev developers.	 */	class UltraDevWorkAround implements java.sql.CallableStatement {		private java.sql.PreparedStatement delegate = null;		UltraDevWorkAround(java.sql.PreparedStatement pstmt) {			this.delegate = pstmt;		}		public void addBatch() throws SQLException {			this.delegate.addBatch();		}		public void addBatch(java.lang.String p1) throws SQLException {			this.delegate.addBatch(p1);		}		public void cancel() throws SQLException {			this.delegate.cancel();		}		public void clearBatch() throws SQLException {			this.delegate.clearBatch();		}		public void clearParameters() throws SQLException {			this.delegate.clearParameters();		}		public void clearWarnings() throws SQLException {			this.delegate.clearWarnings();		}		public void close() throws SQLException {			this.delegate.close();		}		public boolean execute() throws SQLException {			return this.delegate.execute();		}		public boolean execute(java.lang.String p1) throws SQLException {			return this.delegate.execute(p1);		}		/**		 * @see Statement#execute(String, int)		 */		public boolean execute(String arg0, int arg1) throws SQLException {			return this.delegate.execute(arg0, arg1);		}		/**		 * @see Statement#execute(String, int[])		 */		public boolean execute(String arg0, int[] arg1) throws SQLException {			return this.delegate.execute(arg0, arg1);		}		/**		 * @see Statement#execute(String, String[])		 */		public boolean execute(String arg0, String[] arg1) throws SQLException {			return this.delegate.execute(arg0, arg1);		}		public int[] executeBatch() throws SQLException {			return this.delegate.executeBatch();		}		public java.sql.ResultSet executeQuery() throws SQLException {			return this.delegate.executeQuery();		}		public java.sql.ResultSet executeQuery(java.lang.String p1)				throws SQLException {			return this.delegate.executeQuery(p1);		}		public int executeUpdate() throws SQLException {			return this.delegate.executeUpdate();		}		public int executeUpdate(java.lang.String p1) throws SQLException {			return this.delegate.executeUpdate(p1);		}		/**		 * @see Statement#executeUpdate(String, int)		 */		public int executeUpdate(String arg0, int arg1) throws SQLException {			return this.delegate.executeUpdate(arg0, arg1);		}		/**		 * @see Statement#executeUpdate(String, int[])		 */		public int executeUpdate(String arg0, int[] arg1) throws SQLException {			return this.delegate.executeUpdate(arg0, arg1);		}		/**		 * @see Statement#executeUpdate(String, String[])		 */		public int executeUpdate(String arg0, String[] arg1)				throws SQLException {			return this.delegate.executeUpdate(arg0, arg1);		}		public java.sql.Array getArray(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getArray(String)		 */		public java.sql.Array getArray(String arg0) throws SQLException {			throw new NotImplemented();		}		public java.math.BigDecimal getBigDecimal(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * DOCUMENT ME!		 * 		 * @param p1		 *            DOCUMENT ME!		 * @param p2		 *            DOCUMENT ME!		 * @return DOCUMENT ME!		 * @throws SQLException		 *             DOCUMENT ME!		 * @deprecated		 */		public java.math.BigDecimal getBigDecimal(int p1, int p2)				throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getBigDecimal(String)		 */		public BigDecimal getBigDecimal(String arg0) throws SQLException {			return null;		}		public java.sql.Blob getBlob(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getBlob(String)		 */		public java.sql.Blob getBlob(String arg0) throws SQLException {			throw new NotImplemented();		}		public boolean getBoolean(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getBoolean(String)		 */		public boolean getBoolean(String arg0) throws SQLException {			throw new NotImplemented();		}		public byte getByte(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getByte(String)		 */		public byte getByte(String arg0) throws SQLException {			throw new NotImplemented();		}		public byte[] getBytes(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getBytes(String)		 */		public byte[] getBytes(String arg0) throws SQLException {			throw new NotImplemented();		}		public java.sql.Clob getClob(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getClob(String)		 */		public Clob getClob(String arg0) throws SQLException {			throw new NotImplemented();		}		public java.sql.Connection getConnection() throws SQLException {			return this.delegate.getConnection();		}		public java.sql.Date getDate(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		public java.sql.Date getDate(int p1, final Calendar p2)				throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getDate(String)		 */		public Date getDate(String arg0) throws SQLException {			throw new NotImplemented();		}		/**		 * @see CallableStatement#getDate(String, Calendar)		 */		public Date getDate(String arg0, Calendar arg1) throws SQLException {			throw new NotImplemented();		}		public double getDouble(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getDouble(String)		 */		public double getDouble(String arg0) throws SQLException {			throw new NotImplemented();		}		public int getFetchDirection() throws SQLException {			return this.delegate.getFetchDirection();		}		public int getFetchSize() throws java.sql.SQLException {			return this.delegate.getFetchSize();		}		public float getFloat(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getFloat(String)		 */		public float getFloat(String arg0) throws SQLException {			throw new NotImplemented();		}		/**		 * @see Statement#getGeneratedKeys()		 */		public java.sql.ResultSet getGeneratedKeys() throws SQLException {			return this.delegate.getGeneratedKeys();		}		public int getInt(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getInt(String)		 */		public int getInt(String arg0) throws SQLException {			throw new NotImplemented();		}		public long getLong(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getLong(String)		 */		public long getLong(String arg0) throws SQLException {			throw new NotImplemented();		}		public int getMaxFieldSize() throws SQLException {			return this.delegate.getMaxFieldSize();		}		public int getMaxRows() throws SQLException {			return this.delegate.getMaxRows();		}		public java.sql.ResultSetMetaData getMetaData() throws SQLException {			throw SQLError.createSQLException("Not supported");		}		public boolean getMoreResults() throws SQLException {			return this.delegate.getMoreResults();		}		/**		 * @see Statement#getMoreResults(int)		 */		public boolean getMoreResults(int arg0) throws SQLException {			return this.delegate.getMoreResults();		}		public java.lang.Object getObject(int p1) throws SQLException {			throw SQLError.createSQLException("Not supported");		}		public java.lang.Object getObject(int p1, final java.util.Map p2)				throws SQLException {			throw SQLError.createSQLException("Not supported");		}		/**		 * @see CallableStatement#getObject(String)		 */		public Object getObject(String arg0) throws SQLException {			throw new NotImplemented();		}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲午夜久久久久久久久久久 | 婷婷夜色潮精品综合在线| 男女性色大片免费观看一区二区| 国产九色精品成人porny| 欧美色成人综合| 日本一区二区三区国色天香| 亚洲电影欧美电影有声小说| 成人黄动漫网站免费app| 欧美一级艳片视频免费观看| 夜夜夜精品看看| www.性欧美| 国产亚洲女人久久久久毛片| 日韩av一区二区三区四区| 色乱码一区二区三区88| 欧美国产精品劲爆| 国产乱码字幕精品高清av | 亚洲bdsm女犯bdsm网站| 不卡的av在线| 中文字幕乱码日本亚洲一区二区| 免费人成在线不卡| 欧美一区二区福利视频| 亚洲成人在线观看视频| 欧美怡红院视频| 伊人一区二区三区| 一本色道久久综合亚洲91 | 精品久久久久一区| 日韩电影在线观看电影| 欧美精品三级在线观看| 亚洲综合激情另类小说区| 色悠悠久久综合| 亚洲欧美激情插| 91网页版在线| 亚洲一区中文日韩| 欧美影院一区二区三区| 亚洲国产成人高清精品| 欧美日韩中文精品| 日韩国产精品久久久久久亚洲| 欧美日韩精品一区二区| 亚洲一区二区高清| 欧美日韩成人在线一区| 日精品一区二区| 日韩精品一区二区三区在线| 国产中文字幕精品| 欧美国产精品一区二区三区| 99精品在线观看视频| 一二三区精品福利视频| 欧美日韩的一区二区| 激情久久五月天| 国产欧美日韩在线看| 99精品欧美一区二区蜜桃免费| 亚洲人成电影网站色mp4| 欧美午夜电影网| 久久精品国产精品青草| 国产精品视频观看| 日本韩国一区二区| 免费观看久久久4p| 亚洲国产精品av| 欧美在线三级电影| 久久丁香综合五月国产三级网站| 久久久久综合网| 欧美日韩在线免费视频| 久久成人免费日本黄色| 欧美国产丝袜视频| 欧美日韩在线电影| 国产精品原创巨作av| 亚洲激情在线播放| 精品国产不卡一区二区三区| 99久久婷婷国产综合精品电影| 亚洲1区2区3区4区| 国产精品青草综合久久久久99| 欧美午夜一区二区三区| 国产一区二区久久| 亚洲激情五月婷婷| 国产欧美在线观看一区| 欧美日韩久久一区二区| 国产成人综合自拍| 亚洲国产精品久久人人爱蜜臀| 久久久青草青青国产亚洲免观| 色综合中文字幕国产| 日本不卡视频一二三区| 中文字幕视频一区二区三区久| 91麻豆精品国产91久久久资源速度| 国产v日产∨综合v精品视频| 天天影视涩香欲综合网| 中文字幕在线不卡视频| 日韩欧美资源站| 91福利视频在线| 成人国产精品视频| 国产在线不卡一卡二卡三卡四卡| 亚洲电影激情视频网站| 亚洲欧美视频一区| 日本一区二区三区免费乱视频 | 欧美性一区二区| 国产精品一色哟哟哟| 日本中文一区二区三区| 亚洲高清免费一级二级三级| 国产精品久久久久aaaa樱花| 精品国产91久久久久久久妲己| 欧美日韩黄视频| 在线观看一区不卡| 91农村精品一区二区在线| 国产aⅴ精品一区二区三区色成熟| 天堂午夜影视日韩欧美一区二区| 亚洲黄色免费网站| 中文字幕佐山爱一区二区免费| 国产日韩av一区二区| 2019国产精品| 久久久久国产精品厨房| 久久亚洲综合av| 欧美精品一区二区在线播放| 日韩午夜在线播放| 日韩美女主播在线视频一区二区三区 | fc2成人免费人成在线观看播放 | 麻豆国产精品一区二区三区| 图片区小说区国产精品视频| 香蕉乱码成人久久天堂爱免费| 一区二区久久久| 亚洲第一主播视频| 男男视频亚洲欧美| 久久福利资源站| 国产成人一区二区精品非洲| 国产成人精品亚洲日本在线桃色| 国产精品自在在线| 国产成人丝袜美腿| 成人免费视频caoporn| 成人精品国产一区二区4080| 99久久精品国产精品久久| 91污片在线观看| 欧洲精品一区二区三区在线观看| 欧美在线观看一二区| 欧美剧情电影在线观看完整版免费励志电影 | 国产精品一区二区视频| 福利一区二区在线观看| 99久久精品国产精品久久| 欧美日韩一级黄| 日韩欧美一区在线| 国产亚洲精品资源在线26u| 日本一区二区三区dvd视频在线| 亚洲国产精品黑人久久久| 悠悠色在线精品| 蜜桃av一区二区| 成人精品鲁一区一区二区| 91国模大尺度私拍在线视频| 欧美一区二区福利在线| 国产精品视频一二三| 亚洲电影一区二区| 国产麻豆视频一区二区| 91高清在线观看| 亚洲精品一区二区精华| 亚洲欧美日韩国产一区二区三区| 亚欧色一区w666天堂| 国产精品白丝jk黑袜喷水| 色综合天天综合色综合av| 日韩一区二区免费高清| 中文字幕一区二区三区在线观看 | 欧美丰满嫩嫩电影| 国产亚洲欧美日韩在线一区| 亚洲午夜电影网| 国产福利一区二区三区| 欧美在线免费播放| 中文字幕乱码亚洲精品一区 | 日韩一级视频免费观看在线| 国产精品久久久久三级| 开心九九激情九九欧美日韩精美视频电影 | 国产精品乱人伦中文| 亚洲国产成人高清精品| 成人蜜臀av电影| 精品国产亚洲在线| 亚洲a一区二区| 91美女在线视频| 久久久精品国产99久久精品芒果| 亚洲综合在线五月| 成人av网在线| 26uuuu精品一区二区| 首页综合国产亚洲丝袜| 色中色一区二区| 国产精品五月天| 国产乱码精品一区二区三| 7777女厕盗摄久久久| 一区二区三区鲁丝不卡| 成人不卡免费av| 久久久久久久久久久黄色| 免费黄网站欧美| 91精品国产综合久久婷婷香蕉| 国产精品美女久久久久av爽李琼| 精品一区二区免费| 欧美一区二区三区视频免费播放| 一区二区高清在线| 色综合一区二区三区| 1024精品合集| 成年人网站91| 国产精品久久久久久久久搜平片| 国产原创一区二区三区| 欧美成人女星排名| 免费看黄色91| 日韩欧美色综合| 激情文学综合插| 久久精品亚洲麻豆av一区二区 | 在线中文字幕不卡| 亚洲精品免费电影|