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

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

?? connectionproperties.java

?? mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
			false,			"Should the driver gather performance metrics, and report them via the configured logger every 'reportMetricsIntervalMillis' milliseconds?",			"3.1.2", DEBUGING_PROFILING_CATEGORY, 1);	private BooleanConnectionProperty generateSimpleParameterMetadata = new BooleanConnectionProperty(			"generateSimpleParameterMetadata", false, "Should the driver generate simplified parameter metadata for PreparedStatements when "			+ "no metadata is available either because the server couldn't support preparing the statement, or server-side prepared statements" +					" are disabled?"			, "5.0.5", MISC_CATEGORY, Integer.MIN_VALUE);	private boolean highAvailabilityAsBoolean = false;	private BooleanConnectionProperty holdResultsOpenOverStatementClose = new BooleanConnectionProperty(			"holdResultsOpenOverStatementClose",			false,			"Should the driver close result sets on Statement.close() as required by the JDBC specification?",			"3.1.7", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty includeInnodbStatusInDeadlockExceptions = new BooleanConnectionProperty(			"includeInnodbStatusInDeadlockExceptions",			false,			"Include the output of \"SHOW ENGINE INNODB STATUS\" in exception messages when deadlock exceptions are detected?",			"5.0.7", DEBUGING_PROFILING_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty ignoreNonTxTables = new BooleanConnectionProperty(			"ignoreNonTxTables",			false,			"Ignore non-transactional table warning for rollback? (defaults to 'false').",			"3.0.9", MISC_CATEGORY, Integer.MIN_VALUE);	private IntegerConnectionProperty initialTimeout = new IntegerConnectionProperty(			"initialTimeout", 2, 1, Integer.MAX_VALUE,			"If autoReconnect is enabled, the"					+ " initial time to wait between"					+ " re-connect attempts (in seconds, defaults to '2').",			"1.1", HA_CATEGORY, 5);	private BooleanConnectionProperty isInteractiveClient = new BooleanConnectionProperty(			"interactiveClient",			false,			"Set the CLIENT_INTERACTIVE flag, which tells MySQL "					+ "to timeout connections based on INTERACTIVE_TIMEOUT instead of WAIT_TIMEOUT",			"3.1.0", CONNECTION_AND_AUTH_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty jdbcCompliantTruncation = new BooleanConnectionProperty(			"jdbcCompliantTruncation",			true,			"Should the driver throw java.sql.DataTruncation"					+ " exceptions when data is truncated as is required by the JDBC specification when connected to a server that supports warnings"					+ "(MySQL 4.1.0 and newer)?", "3.1.2", MISC_CATEGORY,			Integer.MIN_VALUE);	private boolean jdbcCompliantTruncationForReads =		this.jdbcCompliantTruncation.getValueAsBoolean();	private StringConnectionProperty loadBalanceStrategy = new StringConnectionProperty(			"loadBalanceStrategy",			"random",			new String[] {"random", "bestResponseTime"},			"If using a load-balanced connection to connect to SQL nodes in a MySQL Cluster/NDB configuration" +			"(by using the URL prefix \"jdbc:mysql:loadbalance://\"), which load balancin algorithm should the driver " +			"use: (1) \"random\" - the driver will pick a random host for each request. This tends " +			"to work better than round-robin, as the randomness will somewhat account for " +			"spreading loads where requests vary in response time, while round-robin " +			"can sometimes lead to overloaded nodes if there are variations in response times " +			"across the workload. (2) \"bestResponseTime\" - the driver will route the request to the host that had " +			"the best response time for the previous transaction.",			"5.0.6", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private StringConnectionProperty localSocketAddress = new StringConnectionProperty("localSocketAddress",			null, "Hostname or IP address given to explicitly configure the interface that "			+ "the driver will bind the client side of the TCP/IP connection to when connecting.",			"5.0.5", CONNECTION_AND_AUTH_CATEGORY, Integer.MIN_VALUE);	private MemorySizeConnectionProperty locatorFetchBufferSize = new MemorySizeConnectionProperty(			"locatorFetchBufferSize",			1024 * 1024,			0,			Integer.MAX_VALUE,			"If 'emulateLocators' is configured to 'true', what size "					+ " buffer should be used when fetching BLOB data for getBinaryInputStream?",			"3.2.1", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private StringConnectionProperty loggerClassName = new StringConnectionProperty(			"logger", STANDARD_LOGGER_NAME,			"The name of a class that implements '" + Log.class.getName()					+ "' that will be used to log messages to."					+ "(default is '" + STANDARD_LOGGER_NAME + "', which "					+ "logs to STDERR)", "3.1.1", DEBUGING_PROFILING_CATEGORY,			0);	private BooleanConnectionProperty logSlowQueries = new BooleanConnectionProperty(			"logSlowQueries",			false,			"Should queries that take longer than 'slowQueryThresholdMillis' be logged?",			"3.1.2", DEBUGING_PROFILING_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty logXaCommands = new BooleanConnectionProperty(			"logXaCommands",			false,			"Should the driver log XA commands sent by MysqlXaConnection to the server," +			" at the DEBUG level of logging?",			"5.0.5", DEBUGING_PROFILING_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty maintainTimeStats = new BooleanConnectionProperty(			"maintainTimeStats",			true,			"Should the driver maintain various internal timers to enable "					+ "idle time calculations as well as more verbose error messages when "					+ "the connection to the server fails? Setting this property to "					+ "false removes at least two calls to System.getCurrentTimeMillis() "					+ "per query.", "3.1.9", PERFORMANCE_CATEGORY,			Integer.MAX_VALUE);	private boolean maintainTimeStatsAsBoolean = true;	private IntegerConnectionProperty maxQuerySizeToLog = new IntegerConnectionProperty(			"maxQuerySizeToLog",			2048,			0,			Integer.MAX_VALUE,			"Controls the maximum length/size of a query that will get logged when profiling or tracing",			"3.1.3", DEBUGING_PROFILING_CATEGORY, 4);	private IntegerConnectionProperty maxReconnects = new IntegerConnectionProperty(			"maxReconnects",			3,			1,			Integer.MAX_VALUE,			"Maximum number of reconnects to attempt if autoReconnect is true, default is '3'.",			"1.1", HA_CATEGORY, 4);	private IntegerConnectionProperty maxRows = new IntegerConnectionProperty(			"maxRows", -1, -1, Integer.MAX_VALUE,			"The maximum number of rows to return "					+ " (0, the default means return all rows).",			"all versions", MISC_CATEGORY, Integer.MIN_VALUE);	private int maxRowsAsInt = -1;	private IntegerConnectionProperty metadataCacheSize = new IntegerConnectionProperty(			"metadataCacheSize",			50,			1,			Integer.MAX_VALUE,			"The number of queries to cache"					+ "ResultSetMetadata for if cacheResultSetMetaData is set to 'true' (default 50)",			"3.1.1", PERFORMANCE_CATEGORY, 5);	private BooleanConnectionProperty noAccessToProcedureBodies = new BooleanConnectionProperty(			"noAccessToProcedureBodies",			false,			"When determining procedure parameter types for CallableStatements, and the connected user "			+ " can't access procedure bodies through \"SHOW CREATE PROCEDURE\" or select on mysql.proc "			+ " should the driver instead create basic metadata (all parameters reported as IN VARCHARs,"			+ " but allowing registerOutParameter() to be called on them anyway) instead "			+ " of throwing an exception?",			"5.0.3", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty noDatetimeStringSync = new BooleanConnectionProperty(			"noDatetimeStringSync",			false,			"Don't ensure that ResultSet.getDatetimeType().toString().equals(ResultSet.getString())",			"3.1.7", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty noTimezoneConversionForTimeType = new BooleanConnectionProperty(			"noTimezoneConversionForTimeType",			false,			"Don't convert TIME values using the server timezone if 'useTimezone'='true'",			"5.0.0", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty nullCatalogMeansCurrent = new BooleanConnectionProperty(			"nullCatalogMeansCurrent",			true,			"When DatabaseMetadataMethods ask for a 'catalog' parameter, does the value null mean use the current catalog? "					+ "(this is not JDBC-compliant, but follows legacy behavior from earlier versions of the driver)",			"3.1.8", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty nullNamePatternMatchesAll = new BooleanConnectionProperty(			"nullNamePatternMatchesAll",			true,			"Should DatabaseMetaData methods that accept *pattern parameters treat null the same as '%' "					+ " (this is not JDBC-compliant, however older versions of the driver accepted this departure from the specification)",			"3.1.8", MISC_CATEGORY, Integer.MIN_VALUE);	private IntegerConnectionProperty packetDebugBufferSize = new IntegerConnectionProperty(			"packetDebugBufferSize",			20,			0,			Integer.MAX_VALUE,			"The maximum number of packets to retain when 'enablePacketDebug' is true",			"3.1.3", DEBUGING_PROFILING_CATEGORY, 7);	private BooleanConnectionProperty padCharsWithSpace = new BooleanConnectionProperty(			"padCharsWithSpace",			false,			"If a result set column has the CHAR type and the value does not fill the "			+ "amount of characters specified in the DDL for the column, should the driver "			+ "pad the remaining characters with space (for ANSI compliance)?",			"5.0.6",			MISC_CATEGORY,			Integer.MIN_VALUE);	private BooleanConnectionProperty paranoid = new BooleanConnectionProperty(			"paranoid",			false,			"Take measures to prevent exposure sensitive information in error messages and clear "					+ "data structures holding sensitive data when possible? (defaults to 'false')",			"3.0.1", SECURITY_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty pedantic = new BooleanConnectionProperty(			"pedantic", false, "Follow the JDBC spec to the letter.", "3.0.0",			MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty pinGlobalTxToPhysicalConnection = new BooleanConnectionProperty(			"pinGlobalTxToPhysicalConnection", false, "When using XAConnections, should the driver ensure that "			+ " operations on a given XID are always routed to the same physical connection? This allows the XAConnection"			+ " to support \"XA START ... JOIN\" after \"XA END\" has been called",			"5.0.1", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty populateInsertRowWithDefaultValues = new BooleanConnectionProperty(			"populateInsertRowWithDefaultValues", false,			"When using ResultSets that are CONCUR_UPDATABLE, should the driver pre-poulate " +			"the \"insert\" row with default values from the DDL for the table used in the query " +			" so those values are immediately available for ResultSet accessors? This functionality requires a " +			" call to the database for metadata each time a result set of this type is created. " +			" If disabled (the default), the default values will be populated by the an internal" +			" call to refreshRow() which pulls back default values and/or values changed by triggers.",			"5.0.5", MISC_CATEGORY, Integer.MIN_VALUE);	private IntegerConnectionProperty preparedStatementCacheSize = new IntegerConnectionProperty(			"prepStmtCacheSize", 25, 0, Integer.MAX_VALUE,			"If prepared statement caching is enabled, "					+ "how many prepared statements should be cached?",			"3.0.10", PERFORMANCE_CATEGORY, 10);	private IntegerConnectionProperty preparedStatementCacheSqlLimit = new IntegerConnectionProperty(			"prepStmtCacheSqlLimit",			256,			1,			Integer.MAX_VALUE,			"If prepared statement caching is enabled, "					+ "what's the largest SQL the driver will cache the parsing for?",			"3.0.10", PERFORMANCE_CATEGORY, 11);	private BooleanConnectionProperty processEscapeCodesForPrepStmts =		new BooleanConnectionProperty("processEscapeCodesForPrepStmts",				true,				"Should the driver process escape codes in queries that are prepared?",				"3.1.12",				MISC_CATEGORY, Integer.MIN_VALUE);	private StringConnectionProperty profileSql = new StringConnectionProperty(			"profileSql",			null,			"Deprecated, use 'profileSQL' instead. Trace queries and their execution/fetch times on STDERR (true/false) defaults to 'false'",			"2.0.14", DEBUGING_PROFILING_CATEGORY, 3);	private BooleanConnectionProperty profileSQL = new BooleanConnectionProperty(			"profileSQL",			false,			"Trace queries and their execution/fetch times to the configured logger (true/false) defaults to 'false'",			"3.1.0", DEBUGING_PROFILING_CATEGORY, 1);	private boolean profileSQLAsBoolean = false;	private StringConnectionProperty propertiesTransform = new StringConnectionProperty(			NonRegisteringDriver.PROPERTIES_TRANSFORM_KEY,			null,			"An implementation of com.mysql.jdbc.ConnectionPropertiesTransform that the driver will use to modify URL properties passed to the driver before attempting a connection",			"3.1.4", CONNECTION_AND_AUTH_CATEGORY, Integer.MIN_VALUE);	private IntegerConnectionProperty queriesBeforeRetryMaster = new IntegerConnectionProperty(			"queriesBeforeRetryMaster",			50,			1,			Integer.MAX_VALUE,			"Number of queries to issue before falling back to master when failed over "					+ "(when using multi-host failover). Whichever condition is met first, "					+ "'queriesBeforeRetryMaster' or 'secondsBeforeRetryMaster' will cause an "					+ "attempt to be made to reconnect to the master. Defaults to 50.",			"3.0.2", HA_CATEGORY, 7);	private BooleanConnectionProperty reconnectAtTxEnd = new BooleanConnectionProperty(			"reconnectAtTxEnd", false,			"If autoReconnect is set to true, should the driver attempt reconnections"					+ "at the end of every transaction?", "3.0.10",			HA_CATEGORY, 4);	private boolean reconnectTxAtEndAsBoolean = false;	private BooleanConnectionProperty relaxAutoCommit = new BooleanConnectionProperty(			"relaxAutoCommit",			false,			"If the version of MySQL the driver connects to does not support transactions, still allow calls to commit(), rollback() and setAutoCommit() (true/false, defaults to 'false')?",			"2.0.13", MISC_CATEGORY, Integer.MIN_VALUE);	private IntegerConnectionProperty reportMetricsIntervalMillis = new IntegerConnectionProperty(			"reportMetricsIntervalMillis",			30000,			0,			Integer.MAX_VALUE,			"If 'gatherPerfMetrics' is enabled, how often should they be logged (in ms)?",			"3.1.2", DEBUGING_PROFILING_CATEGORY, 3);	private BooleanConnectionProperty requireSSL = new BooleanConnectionProperty(			"requireSSL", false,			"Require SSL connection if useSSL=true? (defaults to 'false').",			"3.1.0", SECURITY_CATEGORY, 3);	private StringConnectionProperty resourceId = new StringConnectionProperty(			"resourceId",			null, "A globally unique name that identifies the resource that this datasource or connection is " +			"connected to, used for XAResource.isSameRM() when the driver can't determine this value based on " +			"hostnames used in the URL",			"5.0.1",			HA_CATEGORY,			Integer.MIN_VALUE);	private IntegerConnectionProperty resultSetSizeThreshold = new IntegerConnectionProperty("resultSetSizeThreshold", 100,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成人精品在线观看| 成人av免费在线| 国产精品美女久久久久久2018| 日韩欧美一区二区免费| 欧美精品乱人伦久久久久久| 国产一区二区三区四区五区入口 | 日本高清视频一区二区| 国产一区免费电影| 高清不卡在线观看| 欧美tickle裸体挠脚心vk| 精品88久久久久88久久久| 欧美96一区二区免费视频| 日韩精品一区二区三区蜜臀| 国产一区二区三区最好精华液| 国产日本欧美一区二区| av不卡免费电影| 亚洲一区二区三区美女| 日韩欧美国产wwwww| 国产成人免费视频| 亚洲影院在线观看| 日韩精品综合一本久道在线视频| 国产一区二区网址| 亚洲情趣在线观看| 欧美日韩www| 韩国av一区二区三区四区| 国产精品久久久久久久午夜片| 欧美三级电影在线观看| 精品无码三级在线观看视频| 丝袜a∨在线一区二区三区不卡| 日韩欧美成人午夜| 97精品久久久久中文字幕 | 色诱视频网站一区| 午夜日韩在线电影| 久久久精品人体av艺术| 欧美影院午夜播放| 国产成人精品亚洲午夜麻豆| 亚洲五码中文字幕| 欧美高清在线精品一区| 91精品麻豆日日躁夜夜躁| 成人在线视频首页| 欧美aaaaaa午夜精品| 亚洲精选在线视频| 久久久国产综合精品女国产盗摄| 在线视频亚洲一区| 成人黄色网址在线观看| 午夜在线成人av| 亚洲欧洲成人自拍| www激情久久| 欧美日韩精品久久久| proumb性欧美在线观看| 久久精品国产第一区二区三区| 一区二区三区加勒比av| 国产日韩精品视频一区| 日韩视频一区二区三区在线播放 | 亚洲精品欧美激情| 久久免费午夜影院| 日韩精品一区二区三区视频| 欧美日韩一级二级三级| 日本精品一区二区三区高清| 国产精品小仙女| 国产在线精品一区在线观看麻豆| 午夜久久福利影院| 亚洲国产欧美在线人成| 亚洲免费观看高清在线观看| 中文字幕欧美日韩一区| 久久精品一区二区三区不卡牛牛 | 国产日本欧洲亚洲| 久久亚洲综合色| 欧美一级生活片| 欧美美女bb生活片| 欧美老肥妇做.爰bbww视频| 欧美性极品少妇| 色综合久久精品| 日本精品一区二区三区高清| 日本福利一区二区| 色狠狠色狠狠综合| 在线观看日韩电影| 欧美图区在线视频| 欧美日本高清视频在线观看| 国产亚洲欧美日韩俺去了| 日韩女优av电影| 欧美电影免费观看高清完整版在线 | 亚洲高清视频的网址| 一区二区三区欧美久久| 洋洋成人永久网站入口| 亚洲综合一二区| 香港成人在线视频| 美女免费视频一区| 激情六月婷婷综合| 国产成人av电影在线观看| 成人性生交大片免费看中文网站| 国产精品一级片在线观看| 成人h精品动漫一区二区三区| 成人国产精品免费观看动漫| 91美女福利视频| 欧美色综合久久| 欧美一区午夜视频在线观看| 精品免费一区二区三区| 欧美激情一区二区三区全黄| 亚洲欧美在线视频观看| 亚洲成人黄色小说| 狠狠色伊人亚洲综合成人| 成人app软件下载大全免费| 在线中文字幕一区| 日韩美一区二区三区| 亚洲国产岛国毛片在线| 亚洲综合另类小说| 国产在线麻豆精品观看| 91丝袜高跟美女视频| 欧美一激情一区二区三区| 国产肉丝袜一区二区| 一区二区三区电影在线播| 男女视频一区二区| 不卡电影免费在线播放一区| 色欧美乱欧美15图片| 7777精品伊人久久久大香线蕉经典版下载| 欧美一级欧美三级| 国产精品福利av| 日韩电影一区二区三区四区| 国产69精品久久久久毛片| 欧美欧美欧美欧美首页| 国产欧美日韩在线看| 午夜一区二区三区视频| 国产成人综合亚洲网站| 欧美日韩国产精品成人| 国产精品久久久爽爽爽麻豆色哟哟| 午夜精品视频在线观看| 国产成人精品影视| 亚洲免费观看高清在线观看| 青青草国产成人99久久| 91色综合久久久久婷婷| 久久久九九九九| 日韩成人免费电影| 一本久久精品一区二区| 久久久.com| 麻豆一区二区99久久久久| 色女孩综合影院| 国产日韩欧美精品一区| 免费人成精品欧美精品| 欧美性欧美巨大黑白大战| 中文字幕精品一区二区三区精品| 日本一道高清亚洲日美韩| 91社区在线播放| 亚洲国产激情av| 国内精品伊人久久久久影院对白| 欧美精品18+| 亚洲另类在线视频| 不卡视频在线观看| 国产免费成人在线视频| 精品一区二区三区不卡| 欧美精品高清视频| 夜夜嗨av一区二区三区四季av| a亚洲天堂av| 欧美国产成人精品| 国产成a人无v码亚洲福利| 精品国产网站在线观看| 日本欧美韩国一区三区| 欧美久久久久久久久中文字幕| 亚洲伊人伊色伊影伊综合网| 色呦呦一区二区三区| 成人欧美一区二区三区小说| 成人高清在线视频| 国产精品网站导航| 成人看片黄a免费看在线| 久久蜜臀精品av| 国产a级毛片一区| 欧美激情综合在线| 丁香六月综合激情| 国产精品青草综合久久久久99| 国产成人精品一区二区三区四区 | 处破女av一区二区| 国产欧美日韩视频一区二区| 国产成人久久精品77777最新版本| 久久精品亚洲麻豆av一区二区| 欧美欧美欧美欧美| 丝袜美腿亚洲一区| 欧美成人三级电影在线| 激情综合色播激情啊| 国产午夜精品美女毛片视频| 高清国产午夜精品久久久久久| 国产精品污网站| 91九色最新地址| 日韩高清在线不卡| 日韩欧美色综合网站| 国产精品99久久不卡二区| 国产精品久久久久永久免费观看| 日本乱码高清不卡字幕| 性感美女极品91精品| 精品国一区二区三区| 国产成a人无v码亚洲福利| 亚洲免费av高清| 欧美猛男男办公室激情| 国产一区二区三区黄视频 | 一区二区三区中文字幕精品精品 | 国产精品拍天天在线| 一本到不卡免费一区二区| 偷拍与自拍一区| 久久久综合九色合综国产精品| 成人av在线资源网| 婷婷丁香久久五月婷婷|