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

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

?? connectionproperties.java

?? mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
		try {			java.lang.reflect.Field[] declaredFields = ConnectionProperties.class					.getDeclaredFields();			for (int i = 0; i < declaredFields.length; i++) {				if (ConnectionProperties.ConnectionProperty.class						.isAssignableFrom(declaredFields[i].getType())) {					PROPERTY_LIST.add(declaredFields[i]);				}			}		} catch (Exception ex) {			throw new RuntimeException(ex.toString());		}	}	/**	 * Exposes all ConnectionPropertyInfo instances as DriverPropertyInfo	 *	 * @param info	 *            the properties to load into these ConnectionPropertyInfo	 *            instances	 * @param slotsToReserve	 *            the number of DPI slots to reserve for 'standard' DPI	 *            properties (user, host, password, etc)	 * @return a list of all ConnectionPropertyInfo instances, as	 *         DriverPropertyInfo	 * @throws SQLException	 *             if an error occurs	 */	protected static DriverPropertyInfo[] exposeAsDriverPropertyInfo(			Properties info, int slotsToReserve) throws SQLException {		return (new ConnectionProperties() {		}).exposeAsDriverPropertyInfoInternal(info, slotsToReserve);	}	private BooleanConnectionProperty allowLoadLocalInfile = new BooleanConnectionProperty(			"allowLoadLocalInfile",			true,			"Should the driver allow use of 'LOAD DATA LOCAL INFILE...' (defaults to 'true').",			"3.0.3", SECURITY_CATEGORY, Integer.MAX_VALUE);	private BooleanConnectionProperty allowMultiQueries = new BooleanConnectionProperty(			"allowMultiQueries",			false,			"Allow the use of ';' to delimit multiple queries during one statement (true/false), defaults to 'false'",			"3.1.1", SECURITY_CATEGORY, 1);	private BooleanConnectionProperty allowNanAndInf = new BooleanConnectionProperty(			"allowNanAndInf",			false,			"Should the driver allow NaN or +/- INF values in PreparedStatement.setDouble()?",			"3.1.5", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty allowUrlInLocalInfile = new BooleanConnectionProperty(			"allowUrlInLocalInfile",			false,			"Should the driver allow URLs in 'LOAD DATA LOCAL INFILE' statements?",			"3.1.4", SECURITY_CATEGORY, Integer.MAX_VALUE);	private BooleanConnectionProperty alwaysSendSetIsolation = new BooleanConnectionProperty(			"alwaysSendSetIsolation",			true,			"Should the driver always communicate with the database when "					+ " Connection.setTransactionIsolation() is called? "					+ "If set to false, the driver will only communicate with the "					+ "database when the requested transaction isolation is different "					+ "than the whichever is newer, the last value that was set via "					+ "Connection.setTransactionIsolation(), or the value that was read from "					+ "the server when the connection was established.",			"3.1.7", PERFORMANCE_CATEGORY, Integer.MAX_VALUE);	private BooleanConnectionProperty autoClosePStmtStreams = new BooleanConnectionProperty(			"autoClosePStmtStreams",			false,			"Should the driver automatically call .close() on streams/readers passed as "			+ "arguments via set*() methods?",			"3.1.12",			MISC_CATEGORY,			Integer.MIN_VALUE);	private BooleanConnectionProperty autoDeserialize = new BooleanConnectionProperty(			"autoDeserialize",			false,			"Should the driver automatically detect and de-serialize objects stored in BLOB fields?",			"3.1.5", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty autoGenerateTestcaseScript = new BooleanConnectionProperty(			"autoGenerateTestcaseScript", false,			"Should the driver dump the SQL it is executing, including server-side "					+ "prepared statements to STDERR?", "3.1.9",			DEBUGING_PROFILING_CATEGORY, Integer.MIN_VALUE);	private boolean autoGenerateTestcaseScriptAsBoolean = false;	private BooleanConnectionProperty autoReconnect = new BooleanConnectionProperty(			"autoReconnect",			false,			"Should the driver try to re-establish stale and/or dead connections? "					+ "  If enabled the driver will throw an exception for a queries issued on a stale or dead connection, "					+ " which belong to the current transaction, but will attempt reconnect before the next query issued on the "					+ "connection in a new transaction. The use of this feature "					+ "is not recommended, because it has side effects related to session state and data consistency when applications don't"					+ "handle SQLExceptions properly, and is only designed to be used "					+ "when you are unable to configure your application to handle SQLExceptions resulting from dead and"					+ "stale connections properly. Alternatively, investigate setting the MySQL server variable \"wait_timeout\""					+ "to some high value rather than the default of 8 hours.",			"1.1", HA_CATEGORY, 0);	private BooleanConnectionProperty autoReconnectForPools = new BooleanConnectionProperty(			"autoReconnectForPools",			false,			"Use a reconnection strategy appropriate for connection pools (defaults to 'false')",			"3.1.3", HA_CATEGORY, 1);	private boolean autoReconnectForPoolsAsBoolean = false;	private MemorySizeConnectionProperty blobSendChunkSize = new MemorySizeConnectionProperty(			"blobSendChunkSize",			1024 * 1024,			1,			Integer.MAX_VALUE,			"Chunk to use when sending BLOB/CLOBs via ServerPreparedStatements",			"3.1.9", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty blobsAreStrings = new BooleanConnectionProperty(            "blobsAreStrings", false,            "Should the driver always treat BLOBs as Strings - specifically to work around dubious metadata "            + "returned by the server for GROUP BY clauses?",            "5.0.8", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty functionsNeverReturnBlobs = new BooleanConnectionProperty(            "functionsNeverReturnBlobs", false,            "Should the driver always treat data from functions returning BLOBs as Strings - specifically to work around dubious metadata "            + "returned by the server for GROUP BY clauses?",            "5.0.8", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty cacheCallableStatements = new BooleanConnectionProperty(			"cacheCallableStmts", false,			"Should the driver cache the parsing stage of CallableStatements",			"3.1.2", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty cachePreparedStatements = new BooleanConnectionProperty(			"cachePrepStmts",			false,			"Should the driver cache the parsing stage of PreparedStatements of client-side "					+ "prepared statements, the \"check\" for suitability of server-side prepared "					+ " and server-side prepared statements themselves?",			"3.0.10", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty cacheResultSetMetadata = new BooleanConnectionProperty(			"cacheResultSetMetadata",			false,			"Should the driver cache ResultSetMetaData for Statements and PreparedStatements? (Req. JDK-1.4+, true/false, default 'false')",			"3.1.1", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private boolean cacheResultSetMetaDataAsBoolean;	private BooleanConnectionProperty cacheServerConfiguration = new BooleanConnectionProperty(			"cacheServerConfiguration",			false,			"Should the driver cache the results of "					+ "'SHOW VARIABLES' and 'SHOW COLLATION' on a per-URL basis?",			"3.1.5", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private IntegerConnectionProperty callableStatementCacheSize = new IntegerConnectionProperty(			"callableStmtCacheSize",			100,			0,			Integer.MAX_VALUE,			"If 'cacheCallableStmts' is enabled, how many callable statements should be cached?",			"3.1.2", PERFORMANCE_CATEGORY, 5);	private BooleanConnectionProperty capitalizeTypeNames = new BooleanConnectionProperty(			"capitalizeTypeNames",			true,			"Capitalize type names in DatabaseMetaData? (usually only useful when using WebObjects, true/false, defaults to 'false')",			"2.0.7", MISC_CATEGORY, Integer.MIN_VALUE);	private StringConnectionProperty characterEncoding = new StringConnectionProperty(			"characterEncoding",			null,			"If 'useUnicode' is set to true, what character encoding should the driver use when dealing with strings? (defaults is to 'autodetect')",			"1.1g", MISC_CATEGORY, 5);	private String characterEncodingAsString = null;	private StringConnectionProperty characterSetResults = new StringConnectionProperty(			"characterSetResults", null,			"Character set to tell the server to return results as.", "3.0.13",			MISC_CATEGORY, 6);	private BooleanConnectionProperty clobberStreamingResults = new BooleanConnectionProperty(			"clobberStreamingResults",			false,			"This will cause a 'streaming' ResultSet to be automatically closed, "					+ "and any outstanding data still streaming from the server to be discarded if another query is executed "					+ "before all the data has been read from the server.",			"3.0.9", MISC_CATEGORY, Integer.MIN_VALUE);	private StringConnectionProperty clobCharacterEncoding = new StringConnectionProperty(			"clobCharacterEncoding",			null,			"The character encoding to use for sending and retrieving TEXT, MEDIUMTEXT " +			"and LONGTEXT values instead of the configured connection characterEncoding",			"5.0.0", MISC_CATEGORY, Integer.MIN_VALUE);	private StringConnectionProperty connectionCollation = new StringConnectionProperty(			"connectionCollation",			null,			"If set, tells the server to use this collation via 'set collation_connection'",			"3.0.13", MISC_CATEGORY, 7);	private IntegerConnectionProperty connectTimeout = new IntegerConnectionProperty(			"connectTimeout", 0, 0, Integer.MAX_VALUE,			"Timeout for socket connect (in milliseconds), with 0 being no timeout. "					+ "Only works on JDK-1.4 or newer. Defaults to '0'.",			"3.0.1", CONNECTION_AND_AUTH_CATEGORY, 9);	private BooleanConnectionProperty continueBatchOnError = new BooleanConnectionProperty(			"continueBatchOnError",			true,			"Should the driver continue processing batch commands if "					+ "one statement fails. The JDBC spec allows either way (defaults to 'true').",			"3.0.3", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty createDatabaseIfNotExist = new BooleanConnectionProperty(			"createDatabaseIfNotExist",			false,			"Creates the database given in the URL if it doesn't yet exist. Assumes "					+ " the configured user has permissions to create databases.",			"3.1.9", MISC_CATEGORY, Integer.MIN_VALUE);	private IntegerConnectionProperty defaultFetchSize = new IntegerConnectionProperty("defaultFetchSize", 0, "The driver will call setFetchSize(n) with this value on all newly-created Statements", "3.1.9", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty detectServerPreparedStmts = new BooleanConnectionProperty(			"useServerPrepStmts",			false,			"Use server-side prepared statements if the server supports them?",			"3.1.0", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty dontTrackOpenResources = new BooleanConnectionProperty(			"dontTrackOpenResources",			false,			"The JDBC specification requires the driver to automatically track and close resources, "					+ "however if your application doesn't do a good job of "					+ "explicitly calling close() on statements or result sets, "					+ "this can cause memory leakage. Setting this property to true "					+ "relaxes this constraint, and can be more memory efficient for "					+ "some applications.", "3.1.7", PERFORMANCE_CATEGORY,			Integer.MIN_VALUE);	private BooleanConnectionProperty dumpQueriesOnException = new BooleanConnectionProperty(			"dumpQueriesOnException",			false,			"Should the driver dump the contents of the query sent to the server in the message for SQLExceptions?",			"3.1.3", DEBUGING_PROFILING_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty dynamicCalendars = new BooleanConnectionProperty(			"dynamicCalendars",			false,			"Should the driver retrieve the default"					+ " calendar when required, or cache it per connection/session?",			"3.1.5", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty elideSetAutoCommits = new BooleanConnectionProperty(			"elideSetAutoCommits",			false,			"If using MySQL-4.1 or newer, should the driver only issue 'set autocommit=n' queries when the server's state doesn't match the requested state by Connection.setAutoCommit(boolean)?",			"3.1.3", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty emptyStringsConvertToZero = new BooleanConnectionProperty(			"emptyStringsConvertToZero", true,			"Should the driver allow conversions from empty string "					+ "fields to numeric values of '0'?", "3.1.8",			MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty emulateLocators = new BooleanConnectionProperty(			"emulateLocators", false, "N/A", "3.1.0", MISC_CATEGORY,			Integer.MIN_VALUE);	private BooleanConnectionProperty emulateUnsupportedPstmts = new BooleanConnectionProperty(			"emulateUnsupportedPstmts",			true,			"Should the driver detect prepared statements that are not supported by the server, and "					+ "replace them with client-side emulated versions?",			"3.1.7", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty enablePacketDebug = new BooleanConnectionProperty(			"enablePacketDebug",			false,			"When enabled, a ring-buffer of 'packetDebugBufferSize' packets will be kept, and dumped when exceptions are thrown in key areas in the driver's code",			"3.1.3", DEBUGING_PROFILING_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty enableQueryTimeouts = new BooleanConnectionProperty(			"enableQueryTimeouts",			true,			"When enabled, query timeouts set via Statement.setQueryTimeout() use a shared "			+ "java.util.Timer instance for scheduling. Even if the timeout doesn't expire before the query is processed, there will be "			+ "memory used by the TimerTask for the given timeout which won't be reclaimed until "			+ "the time the timeout would have expired if it hadn't been cancelled by the driver. High-load environments "			+ "might want to consider disabling this functionality.",			"5.0.6",			PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty explainSlowQueries = new BooleanConnectionProperty(			"explainSlowQueries",			false,			"If 'logSlowQueries' is enabled, should the driver automatically issue an 'EXPLAIN' on the"					+ " server and send the results to the configured log at a WARN level?",			"3.1.2", DEBUGING_PROFILING_CATEGORY, Integer.MIN_VALUE);	/** When failed-over, set connection to read-only? */	private BooleanConnectionProperty failOverReadOnly = new BooleanConnectionProperty(			"failOverReadOnly",			true,			"When failing over in autoReconnect mode, should the connection be set to 'read-only'?",			"3.0.12", HA_CATEGORY, 2);	private BooleanConnectionProperty gatherPerformanceMetrics = new BooleanConnectionProperty(			"gatherPerfMetrics",

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线观看成人免费视频| 欧美日韩精品一区二区天天拍小说 | 欧美亚洲国产一卡| 亚洲一区二区三区四区中文字幕| 欧美大黄免费观看| 国产尤物一区二区在线| 久久尤物电影视频在线观看| 久久精品国产77777蜜臀| 精品国产91乱码一区二区三区| 激情亚洲综合在线| 国产欧美一区二区三区网站| 成人v精品蜜桃久久一区| 一区二区三区精品在线观看| 欧美日韩国产小视频| 免费av成人在线| 久久人人爽人人爽| 91视频在线观看| 国产高清久久久| 中文字幕免费不卡| 欧美在线999| 久久成人麻豆午夜电影| 久久久高清一区二区三区| 97精品久久久午夜一区二区三区| 午夜视频一区二区三区| 久久亚洲欧美国产精品乐播| 精品一区二区精品| 1024成人网| 日韩三级电影网址| 91女人视频在线观看| 免费视频最近日韩| 亚洲免费毛片网站| www国产精品av| 色一区在线观看| 国产呦萝稀缺另类资源| 亚洲午夜久久久久中文字幕久| 精品乱码亚洲一区二区不卡| 91久久国产最好的精华液| 国产做a爰片久久毛片| 一区二区视频免费在线观看| 久久亚洲春色中文字幕久久久| 欧美三级资源在线| 懂色av一区二区夜夜嗨| 秋霞午夜av一区二区三区| 国产精品国产三级国产三级人妇 | 日韩国产欧美视频| 成人欧美一区二区三区小说 | 久久视频一区二区| 欧美日韩综合一区| 99久久er热在这里只有精品66| 蜜桃91丨九色丨蝌蚪91桃色| 亚洲一级二级三级| 亚洲欧洲www| 国产女人18毛片水真多成人如厕| 欧美精品一级二级| 91福利视频在线| 白白色 亚洲乱淫| 国产成人精品影视| 美女在线视频一区| 日本欧美一区二区三区| 性做久久久久久久久| 亚洲品质自拍视频网站| 亚洲韩国精品一区| 亚洲午夜久久久久中文字幕久| 国产精品久久久久久一区二区三区| 精品对白一区国产伦| 91精品国产一区二区三区蜜臀 | 日韩欧美不卡一区| 亚洲蜜臀av乱码久久精品蜜桃| 99久久精品情趣| 国产精华液一区二区三区| 蜜臀精品久久久久久蜜臀| 日本在线播放一区二区三区| 午夜视频一区二区三区| 亚洲国产成人va在线观看天堂| 亚洲黄色免费网站| 亚洲黄色在线视频| 亚洲一区二区三区爽爽爽爽爽 | 欧美三级电影在线观看| 欧美中文字幕一区| 欧美日韩视频在线第一区| 欧美另类videos死尸| 欧美另类一区二区三区| 91精品国产色综合久久ai换脸| 欧美一区二区三区电影| 精品欧美乱码久久久久久1区2区| 日韩欧美高清一区| 国产欧美日韩在线视频| 国产精品久久久久久久久快鸭 | 久久一夜天堂av一区二区三区| 91网上在线视频| 亚洲一区中文日韩| 一级特黄大欧美久久久| 一区二区视频免费在线观看| 亚洲欧洲av一区二区三区久久| 亚洲视频你懂的| 亚洲成人自拍偷拍| 久久99精品国产91久久来源| 国产一区二区精品在线观看| 不卡免费追剧大全电视剧网站| 97精品电影院| 在线不卡免费av| 久久久久久久综合| 亚洲美女免费在线| 奇米888四色在线精品| 国产不卡在线一区| 欧美专区在线观看一区| 亚洲人成精品久久久久| 五月天婷婷综合| 狠狠色狠狠色综合系列| 99国内精品久久| 欧美一区二区视频免费观看| 国产午夜久久久久| 国产日韩欧美高清| 亚洲aⅴ怡春院| 国产久卡久卡久卡久卡视频精品| 97国产精品videossex| 欧美一区二区三区影视| 国产日韩欧美在线一区| 亚洲国产视频在线| 成人免费毛片a| 91精品国产福利在线观看| 亚洲国产成人午夜在线一区| 丝袜国产日韩另类美女| av在线一区二区三区| 日韩亚洲欧美在线观看| 亚洲视频综合在线| 国产精品伊人色| 在线播放亚洲一区| 国产精品成人免费| 寂寞少妇一区二区三区| 欧美日韩五月天| 中文字幕一区二区三区av| 久久99国产精品麻豆| 欧美在线不卡视频| 亚洲欧洲精品一区二区精品久久久 | 久久久久久一级片| 日本欧美一区二区三区乱码 | 成人免费的视频| 日韩欧美一区二区三区在线| 亚洲午夜电影在线| 97久久精品人人做人人爽| 国产日韩在线不卡| 久久精品国产久精国产| 欧美精品xxxxbbbb| 一区二区在线看| 色综合中文字幕| 国产精品天干天干在观线| 精品一二线国产| 欧美一区二区视频在线观看2022| 一区二区三区丝袜| 91麻豆精东视频| 国产精品久久毛片av大全日韩| 国产很黄免费观看久久| 久久奇米777| 国产乱一区二区| 麻豆免费看一区二区三区| 欧美精品一区男女天堂| 五月激情丁香一区二区三区| 日本黄色一区二区| 亚洲色图欧洲色图婷婷| 成人精品gif动图一区| 国产日本欧洲亚洲| 国产精品一区二区91| 日韩欧美成人午夜| 中文在线一区二区| 成人aaaa免费全部观看| 国产欧美精品区一区二区三区 | 青青草国产成人av片免费| 欧美性猛交一区二区三区精品| 日韩av一区二| 欧美精品v日韩精品v韩国精品v| 亚洲成精国产精品女| 欧美放荡的少妇| 久久精品av麻豆的观看方式| 精品剧情在线观看| 国产成人小视频| 国产精品三级视频| 99久久精品情趣| 亚洲一级二级在线| 欧美一区二区三区的| 国产一区二区三区在线观看免费 | 精品福利一区二区三区| 国产高清视频一区| 中文字幕在线不卡| 在线中文字幕一区| 青青草97国产精品免费观看无弹窗版| 欧美va亚洲va| 成人小视频免费在线观看| 亚洲精品第1页| 欧美一区二区三区公司| 国产精品 日产精品 欧美精品| 中文字幕亚洲在| 欧美男人的天堂一二区| 久久av老司机精品网站导航| 国产三区在线成人av| 91福利视频网站| 狠狠v欧美v日韩v亚洲ⅴ| 中文字幕永久在线不卡| 3d动漫精品啪啪1区2区免费| 大陆成人av片|