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

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

?? connection.java

?? 用于JAVA數據庫連接.解壓就可用,方便得很
?? JAVA
字號:
/* Copyright (C) 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 java.sql.SQLException;import java.util.TimeZone;import com.mysql.jdbc.log.Log;/** * This interface contains methods that are considered the "vendor extension" * to the JDBC API for MySQL's implementation of java.sql.Connection. *  * For those looking further into the driver implementation, it is not * an API that is used for plugability of implementations inside our driver * (which is why there are still references to ConnectionImpl throughout the * code). *  * @version $Id: $ * */public interface Connection extends java.sql.Connection, ConnectionProperties {	/**	 * Changes the user on this connection by performing a re-authentication. If	 * authentication fails, the connection will remain under the context of the	 * current user.	 * 	 * @param userName	 *            the username to authenticate with	 * @param newPassword	 *            the password to authenticate with	 * @throws SQLException	 *             if authentication fails, or some other error occurs while	 *             performing the command.	 */	public abstract void changeUser(String userName, String newPassword)			throws SQLException;	public abstract void clearHasTriedMaster();	/**	 * Prepares a statement on the client, using client-side emulation 	 * (irregardless of the configuration property 'useServerPrepStmts') 	 * with the same semantics as the java.sql.Connection.prepareStatement() 	 * method with the same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String)	 */	public abstract java.sql.PreparedStatement clientPrepareStatement(String sql)			throws SQLException;	/**	 * Prepares a statement on the client, using client-side emulation 	 * (irregardless of the configuration property 'useServerPrepStmts') 	 * with the same semantics as the java.sql.Connection.prepareStatement() 	 * method with the same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String, int)	 */	public abstract java.sql.PreparedStatement clientPrepareStatement(String sql,			int autoGenKeyIndex) throws SQLException;	/**	 * Prepares a statement on the client, using client-side emulation 	 * (irregardless of the configuration property 'useServerPrepStmts') 	 * with the same semantics as the java.sql.Connection.prepareStatement() 	 * method with the same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String, int, int)	 */	public abstract java.sql.PreparedStatement clientPrepareStatement(String sql,			int resultSetType, int resultSetConcurrency) throws SQLException;	/**	 * Prepares a statement on the client, using client-side emulation 	 * (irregardless of the configuration property 'useServerPrepStmts') 	 * with the same semantics as the java.sql.Connection.prepareStatement() 	 * method with the same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String, int[])	 */	public abstract java.sql.PreparedStatement clientPrepareStatement(String sql,			int[] autoGenKeyIndexes) throws SQLException;	/**	 * Prepares a statement on the client, using client-side emulation 	 * (irregardless of the configuration property 'useServerPrepStmts') 	 * with the same semantics as the java.sql.Connection.prepareStatement() 	 * method with the same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String, int, int, int)	 */	public abstract java.sql.PreparedStatement clientPrepareStatement(String sql,			int resultSetType, int resultSetConcurrency,			int resultSetHoldability) throws SQLException;		/**	 * Prepares a statement on the client, using client-side emulation 	 * (irregardless of the configuration property 'useServerPrepStmts') 	 * with the same semantics as the java.sql.Connection.prepareStatement() 	 * method with the same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String, String[])	 */	public abstract java.sql.PreparedStatement clientPrepareStatement(String sql,			String[] autoGenKeyColNames) throws SQLException;	/**	 * Returns the number of statements active on this connection, which	 * haven't been .close()d.	 */	public abstract int getActiveStatementCount();	/**	 * Reports how long this connection has been idle. 	 * This time (reported in milliseconds) is updated once a query has 	 * completed.	 * 	 * @return number of ms that this connection has been idle, 0 if the driver	 *         is busy retrieving results.	 */	public abstract long getIdleFor();	/**	 * Returns the log mechanism that should be used to log information from/for	 * this Connection.	 * 	 * @return the Log instance to use for logging messages.	 * @throws SQLException	 *             if an error occurs	 */	public abstract Log getLog() throws SQLException;	/**	 * Returns the server's character set	 * 	 * @return the server's character set.	 */	public abstract String getServerCharacterEncoding();	/**	 * Returns the TimeZone that represents the configured	 * timezone for the server.	 */	public abstract TimeZone getServerTimezoneTZ();	/**	 * Returns the comment that will be prepended to all statements	 * sent to the server.	 * 	 * @return the comment that will be prepended to all statements	 * sent to the server.	 */	public abstract String getStatementComment();	/**	 * Has this connection tried to execute a query on the "master"	 * server (first host in a multiple host list).	 */	public abstract boolean hasTriedMaster();	/**	 * Is this connection currently a participant in an XA transaction?	 */	public abstract boolean isInGlobalTx();	/**	 * Is this connection connected to the first host in the list if	 * there is a list of servers in the URL?	 * 	 * @return true if this connection is connected to the first in 	 * the list.	 */	public abstract boolean isMasterConnection();	/**	 * Is the server in a sql_mode that doesn't allow us to use \\ to escape	 * things?	 * 	 * @return Returns the noBackslashEscapes.	 */	public abstract boolean isNoBackslashEscapesSet();	/**	 * Is the server configured to use lower-case table names only?	 * 	 * @return true if lower_case_table_names is 'on'	 */	public abstract boolean lowerCaseTableNames();	/**	 * Does the server this connection is connected to	 * support unicode?	 */	public abstract boolean parserKnowsUnicode();	/**	 * Detect if the connection is still good by sending a ping command	 * to the server.	 * 	 * @throws SQLException	 *             if the ping fails	 */	public abstract void ping() throws SQLException;	/**	 * Resets the server-side state of this connection. Doesn't work for MySQL	 * versions older than 4.0.6 or if isParanoid() is set (it will become a	 * no-op in these cases). Usually only used from connection pooling code.	 * 	 * @throws SQLException	 *             if the operation fails while resetting server state.	 */	public abstract void resetServerState() throws SQLException;	/**	 * Prepares a statement on the server (irregardless of the 	 * configuration property 'useServerPrepStmts') with the same semantics	 * as the java.sql.Connection.prepareStatement() method with the 	 * same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String)	 */	public abstract java.sql.PreparedStatement serverPrepareStatement(String sql)		throws SQLException;	/**	 * Prepares a statement on the server (irregardless of the 	 * configuration property 'useServerPrepStmts') with the same semantics	 * as the java.sql.Connection.prepareStatement() method with the 	 * same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String, int)	 */	public abstract java.sql.PreparedStatement serverPrepareStatement(String sql,			int autoGenKeyIndex) throws SQLException;	/**	 * Prepares a statement on the server (irregardless of the 	 * configuration property 'useServerPrepStmts') with the same semantics	 * as the java.sql.Connection.prepareStatement() method with the 	 * same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String, int, int)	 */	public abstract java.sql.PreparedStatement serverPrepareStatement(String sql,			int resultSetType, int resultSetConcurrency) throws SQLException;	/**	 * Prepares a statement on the server (irregardless of the 	 * configuration property 'useServerPrepStmts') with the same semantics	 * as the java.sql.Connection.prepareStatement() method with the 	 * same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String, int, int, int)	 */	public abstract java.sql.PreparedStatement serverPrepareStatement(String sql,			int resultSetType, int resultSetConcurrency,			int resultSetHoldability) throws SQLException;		/**	 * Prepares a statement on the server (irregardless of the 	 * configuration property 'useServerPrepStmts') with the same semantics	 * as the java.sql.Connection.prepareStatement() method with the 	 * same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String, int[])	 */	public abstract java.sql.PreparedStatement serverPrepareStatement(String sql,			int[] autoGenKeyIndexes) throws SQLException;		/**	 * Prepares a statement on the server (irregardless of the 	 * configuration property 'useServerPrepStmts') with the same semantics	 * as the java.sql.Connection.prepareStatement() method with the 	 * same argument types.	 * 	 * @see java.sql.Connection#prepareStatement(String, String[])	 */	public abstract java.sql.PreparedStatement serverPrepareStatement(String sql,			String[] autoGenKeyColNames) throws SQLException;	/**	 * @param failedOver	 *            The failedOver to set.	 */	public abstract void setFailedOver(boolean flag);	/**	 * @param preferSlaveDuringFailover	 *            The preferSlaveDuringFailover to set.	 */	public abstract void setPreferSlaveDuringFailover(boolean flag);	/**	 * Sets the comment that will be prepended to all statements	 * sent to the server. Do not use slash-star or star-slash tokens 	 * in the comment as these will be added by the driver itself.	 * 	 * @param comment  the comment that will be prepended to all statements	 * sent to the server.	 */	public abstract void setStatementComment(String comment);	/**	 * Used by MiniAdmin to shutdown a MySQL server	 * 	 * @throws SQLException	 *             if the command can not be issued.	 */	public abstract void shutdownServer() throws SQLException;	/**	 * Does the server this connection is connected to	 * support quoted isolation levels?	 */	public abstract boolean supportsIsolationLevel();	/**	 * Does the server this connection is connected to	 * support quoted identifiers?	 */	public abstract boolean supportsQuotedIdentifiers();	/**	 * Does the server this connection is connected to	 * support quoted identifiers?	 */	public abstract boolean supportsTransactions();	/**	 * Does the server this connection is connected to	 * meet or exceed the given version?	 */	public abstract boolean versionMeetsMinimum(int major, int minor,			int subminor) throws SQLException;		public abstract void reportQueryTime(long millisOrNanos);		public abstract boolean isAbonormallyLongQuery(long millisOrNanos);}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
3atv在线一区二区三区| 中文字幕亚洲视频| 国产精品久久久一本精品| 亚洲狠狠爱一区二区三区| 国产福利一区在线| 欧美图片一区二区三区| 国产精品免费av| 乱一区二区av| 欧美日韩久久不卡| 中文字幕在线播放不卡一区| 老鸭窝一区二区久久精品| 色欧美日韩亚洲| 日本一区二区久久| 精品一区二区在线免费观看| 欧美无乱码久久久免费午夜一区| 久久综合色天天久久综合图片| 亚洲国产婷婷综合在线精品| bt欧美亚洲午夜电影天堂| 久久嫩草精品久久久久| 日本亚洲三级在线| 欧美无乱码久久久免费午夜一区| 亚洲欧美国产高清| 成人国产视频在线观看| 久久夜色精品一区| 国内欧美视频一区二区 | 日韩欧美中文字幕公布| 一区二区三区精品视频在线| www.欧美亚洲| 国产精品传媒入口麻豆| 成人aaaa免费全部观看| 国产精品女同互慰在线看| 国产伦精品一区二区三区免费 | 午夜av电影一区| 99精品热视频| 成人免费在线播放视频| 成人app软件下载大全免费| 亚洲国产精品成人综合色在线婷婷| 免费观看一级特黄欧美大片| 精品视频全国免费看| 日韩欧美国产麻豆| 看电视剧不卡顿的网站| 欧美一区二区啪啪| 丝袜诱惑亚洲看片| 高清成人免费视频| 精品88久久久久88久久久| 精品亚洲欧美一区| 日韩欧美中文一区二区| 日韩成人免费看| av亚洲精华国产精华| 国产精品视频你懂的| 国产黑丝在线一区二区三区| 久久久午夜电影| 国产99精品在线观看| 国产精品系列在线| 99vv1com这只有精品| 亚洲欧洲av在线| 成人av午夜影院| 中文字幕在线观看一区二区| av在线不卡电影| 亚洲蜜桃精久久久久久久| 国产xxx精品视频大全| 欧美在线视频全部完| 一区二区三区日韩精品| 欧洲精品在线观看| 视频一区视频二区中文字幕| 欧美一级艳片视频免费观看| 极品尤物av久久免费看| 久久蜜桃av一区精品变态类天堂 | 91在线无精精品入口| 亚洲精品视频免费观看| 欧美军同video69gay| 久久国产三级精品| 日本一区二区三区四区在线视频| 波多野结衣中文一区| 亚洲国产cao| 精品国产第一区二区三区观看体验| 久久99深爱久久99精品| 中文字幕第一区第二区| 色网站国产精品| 石原莉奈在线亚洲三区| 日韩欧美国产三级| 日本精品免费观看高清观看| 视频在线观看一区二区三区| 国产拍欧美日韩视频二区| 91久久奴性调教| 精品一区二区三区在线播放| 亚洲天堂a在线| 欧美一二三区在线观看| 成人激情av网| 美女一区二区三区| 亚洲日韩欧美一区二区在线| 欧美一区二区在线看| 韩国成人福利片在线播放| 亚洲精品老司机| 国产女人18毛片水真多成人如厕 | 国产一区久久久| 亚洲另类在线视频| 精品美女一区二区三区| 91免费国产在线观看| 日本不卡高清视频| 亚洲乱码国产乱码精品精的特点| 91精品国产入口| 91视频精品在这里| 激情丁香综合五月| 五月激情六月综合| 中文字幕在线不卡| 久久久久国产精品厨房| 91在线国产观看| 亚洲五码中文字幕| 中文在线资源观看网站视频免费不卡 | 亚洲色图制服丝袜| 精品国产一区二区三区不卡| 欧美三区在线视频| 一本大道久久精品懂色aⅴ| 国产激情精品久久久第一区二区 | 欧美老肥妇做.爰bbww| 99热精品一区二区| 国产精品亚洲第一区在线暖暖韩国 | 国产精品亚洲人在线观看| 日韩精品国产欧美| 亚洲欧美国产77777| 国产精品欧美久久久久一区二区| 欧美大片日本大片免费观看| 欧美久久高跟鞋激| 欧美日韩一二三区| 在线看日韩精品电影| 色综合中文字幕| jlzzjlzz亚洲女人18| 成人在线综合网站| 国产成人av电影在线观看| 国产一区二区91| 亚洲成人午夜电影| 亚洲柠檬福利资源导航| 一区二区欧美视频| 中文一区二区在线观看| 日韩一级黄色片| 欧美巨大另类极品videosbest| 在线免费观看日韩欧美| 91麻豆精品国产自产在线| 欧美色倩网站大全免费| 欧美日韩国产成人在线免费| 欧美日韩国产a| 欧美r级在线观看| 精品粉嫩aⅴ一区二区三区四区| 欧美精品一区二区三区蜜臀| 精品成人在线观看| 日韩欧美视频一区| 国产三级欧美三级| 国产精品乱码妇女bbbb| 亚洲免费观看高清完整| 亚洲国产综合人成综合网站| 亚洲国产成人av好男人在线观看| 亚洲欧美乱综合| 午夜激情一区二区三区| 精品亚洲国内自在自线福利| 国产麻豆精品久久一二三| 91浏览器打开| 色综合欧美在线视频区| 91精品在线一区二区| 国产午夜精品一区二区| 《视频一区视频二区| 亚洲第一在线综合网站| 日韩国产精品91| 国产sm精品调教视频网站| 色欧美88888久久久久久影院| 欧美老年两性高潮| 久久婷婷国产综合国色天香| 亚洲视频你懂的| 亚洲精品videosex极品| 日韩av在线免费观看不卡| 激情丁香综合五月| 色噜噜夜夜夜综合网| 精品少妇一区二区三区在线视频| 国产精品国产三级国产专播品爱网| 中文字幕色av一区二区三区| 日韩精品91亚洲二区在线观看 | 国产成人h网站| 欧美日韩中文字幕精品| 国产亚洲一二三区| 性做久久久久久| 波多野结衣中文字幕一区二区三区| 欧美日韩国产一级片| 欧美激情一区在线| 天堂va蜜桃一区二区三区| 久久国产日韩欧美精品| 91精品国产综合久久国产大片| 国产婷婷色一区二区三区在线| 亚洲成人av免费| av激情综合网| 日韩精品一区二区三区在线观看 | 99国产精品99久久久久久| 99久久国产综合精品色伊| 555www色欧美视频| 国产精品久久久久久久久搜平片| 奇米影视在线99精品| 欧美日韩国产123区| 亚洲自拍偷拍麻豆| 99久久99久久综合| 国产精品免费丝袜| 国产一区久久久|