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

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

?? connection.java

?? mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序
?? 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一区二区三区免费野_久草精品视频
亚洲一区二区欧美日韩| 91社区在线播放| 94-欧美-setu| 日韩一区二区麻豆国产| 中文字幕第一页久久| 天堂一区二区在线| 不卡一卡二卡三乱码免费网站| 91精品国产一区二区三区蜜臀 | 日本欧洲一区二区| 97精品超碰一区二区三区| 精品欧美黑人一区二区三区| 午夜精品福利一区二区三区蜜桃| 不卡的av电影| 久久综合久久久久88| 午夜免费欧美电影| 色婷婷一区二区| 国产精品免费网站在线观看| 日本麻豆一区二区三区视频| 欧美色偷偷大香| 亚洲猫色日本管| 99精品久久久久久| 亚洲同性gay激情无套| www.一区二区| 国产精品初高中害羞小美女文| 国产一区二区三区在线观看免费| 欧美一区二区网站| 日韩av中文在线观看| 欧美日韩精品专区| 夜夜揉揉日日人人青青一国产精品| 成人av在线播放网址| 中文字幕欧美日本乱码一线二线| 国产精品一区一区三区| www久久精品| 国产精品亚洲一区二区三区妖精 | 在线免费观看一区| 亚洲美女免费在线| 欧美日韩在线三区| 日韩中文字幕亚洲一区二区va在线| 777亚洲妇女| 狠狠色狠狠色综合| 久久久激情视频| 99久久精品免费| 亚洲精品水蜜桃| 在线观看91精品国产麻豆| 视频一区欧美日韩| 久久综合久久综合久久综合| 国产v日产∨综合v精品视频| 国产精品久久久久影院色老大| av一区二区三区在线| 一区二区三区日韩精品视频| 欧美日本韩国一区| 国产原创一区二区| 亚洲精品中文在线影院| 欧美巨大另类极品videosbest | 三级久久三级久久| 日韩欧美激情一区| 国产乱码精品一区二区三| 亚洲少妇中出一区| 欧美一区二区三区的| 国产精品一二一区| 亚洲尤物视频在线| 成人性生交大片免费| 色视频欧美一区二区三区| 亚洲一区二区三区四区不卡| 日韩精品一区二区三区视频播放 | 久久精品噜噜噜成人av农村| 国产亚洲污的网站| 在线精品视频免费播放| 久久99最新地址| 一区二区三区国产精华| 精品乱人伦小说| 欧美综合视频在线观看| 九九视频精品免费| 亚洲欧美日韩一区二区三区在线观看| 欧美日韩精品系列| 国产 欧美在线| 天天影视涩香欲综合网| 亚洲欧洲日韩女同| 精品久久久三级丝袜| 欧美三日本三级三级在线播放| 国产麻豆精品视频| 日本不卡一区二区| 亚洲美女视频在线| 国产精品三级电影| 日韩美女天天操| 欧美日韩成人一区二区| 粉嫩av一区二区三区在线播放| 免费精品视频在线| 亚洲成人777| 最近日韩中文字幕| 欧美激情一区不卡| 久久亚洲精精品中文字幕早川悠里| 欧美亚洲另类激情小说| 成人av在线一区二区| 国产米奇在线777精品观看| 日韩vs国产vs欧美| 亚洲午夜在线视频| 亚洲免费观看视频| 国产精品美女一区二区在线观看| 精品国产91乱码一区二区三区| 欧美日韩情趣电影| 欧美色综合影院| 91麻豆国产香蕉久久精品| 成人av影视在线观看| 国产成人综合在线观看| 国产精品自在在线| 国产一区中文字幕| 国产精品亚洲成人| 国产一区二区三区精品视频| 精品一区二区免费| 国产在线精品一区二区 | 亚洲一区二区三区四区在线观看| 中文字幕佐山爱一区二区免费| 久久久久久黄色| 国产精品国产三级国产普通话三级| 国产日韩一级二级三级| 久久老女人爱爱| 日本一区二区三区免费乱视频| 日本一区二区在线不卡| 国产精品久久久久三级| 亚洲日本一区二区三区| 亚洲视频在线一区观看| 一区二区三区中文在线观看| 一区二区三区四区国产精品| 亚洲电影一级黄| 日本免费在线视频不卡一不卡二 | 国产在线视视频有精品| 国产乱色国产精品免费视频| 国产+成+人+亚洲欧洲自线| a级精品国产片在线观看| 色先锋aa成人| 91精品麻豆日日躁夜夜躁| 欧美v国产在线一区二区三区| 精品福利一区二区三区| 国产精品麻豆久久久| 一区二区三区小说| 男女性色大片免费观看一区二区| 国产精品一区三区| 色哟哟一区二区三区| 911精品产国品一二三产区 | 欧美天堂一区二区三区| 欧美精品1区2区3区| 久久综合久久鬼色| 最新中文字幕一区二区三区| 亚洲国产精品一区二区尤物区| 日本人妖一区二区| 99在线热播精品免费| 在线不卡欧美精品一区二区三区| 精品欧美久久久| 亚洲精品免费看| 蜜桃av噜噜一区| 91成人在线精品| 久久先锋影音av| 伊人婷婷欧美激情| 激情五月婷婷综合| 在线观看一区二区精品视频| 久久美女高清视频| 亚洲va韩国va欧美va精品| 国产成人午夜视频| 欧美日韩成人一区二区| 国产精品伦一区| 久久er99热精品一区二区| 色老汉一区二区三区| 日韩欧美一区二区三区在线| 成人欧美一区二区三区白人 | 亚洲一区二区精品久久av| 狠狠色2019综合网| 欧美在线不卡视频| 国产精品视频一二| 免费高清不卡av| 欧美在线视频日韩| 国产精品日韩精品欧美在线| 另类综合日韩欧美亚洲| 在线免费观看日本欧美| 中文字幕在线观看不卡视频| 国产一区二区三区免费在线观看| 欧日韩精品视频| 中文字幕在线免费不卡| 激情国产一区二区| 欧美一卡二卡三卡| 日韩不卡一区二区三区| 欧美日韩视频专区在线播放| 亚洲精品v日韩精品| 国产成人在线观看免费网站| 日韩精品一区国产麻豆| 日本少妇一区二区| 欧美精品黑人性xxxx| 无码av免费一区二区三区试看 | 欧美成人vps| 日本视频免费一区| 欧美一区二区三区视频免费播放 | 亚洲欧美日韩一区二区三区在线观看 | 综合在线观看色| 成人短视频下载| 中文字幕国产精品一区二区| 高清不卡一二三区| 中文字幕av不卡| 成人av网在线| 成人免费一区二区三区在线观看| 成人精品鲁一区一区二区|