亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
奇米色一区二区| 亚洲猫色日本管| 日本道色综合久久| 99精品视频在线观看| 成人国产精品免费观看视频| 国产99一区视频免费| 处破女av一区二区| 成人福利在线看| 色88888久久久久久影院按摩| 91片在线免费观看| 欧美人伦禁忌dvd放荡欲情| 日韩欧美电影一区| 欧美一区二区免费| 欧美mv日韩mv国产| 国产精品久久久久久久久搜平片| 亚洲精品视频观看| 青青草精品视频| 国产激情视频一区二区在线观看| 成人av免费在线| 欧美亚洲国产一区二区三区va| 欧美理论在线播放| 国产亚洲美州欧州综合国| 国产精品卡一卡二| 午夜不卡在线视频| 国产一区二区不卡| 91国产精品成人| 日韩欧美美女一区二区三区| 国产欧美日韩久久| 亚洲一区二区在线观看视频| 麻豆国产一区二区| 99热99精品| 欧美一级欧美三级| 中文字幕在线一区| 日韩精品亚洲一区| 成人亚洲一区二区一| 欧美日韩三级一区| 国产精品青草久久| 美日韩黄色大片| 在线免费观看日韩欧美| 亚洲精品在线观看视频| 亚洲综合色在线| 国产一区二区三区美女| 欧美日韩中文国产| 亚洲国产精品v| 麻豆91免费看| 在线精品亚洲一区二区不卡| 久久久久久久综合狠狠综合| 视频一区欧美日韩| 91麻豆福利精品推荐| 精品国产精品网麻豆系列| 国产精品中文字幕一区二区三区| 91看片淫黄大片一级在线观看| 精品99999| 日本美女视频一区二区| 色www精品视频在线观看| 国产亚洲欧美日韩日本| 精品系列免费在线观看| 678五月天丁香亚洲综合网| 亚洲免费三区一区二区| 国产精品一区二区黑丝| 精品三级av在线| 日本伊人精品一区二区三区观看方式| 不卡影院免费观看| 欧美经典一区二区三区| 国产一区二区主播在线| 欧美大胆一级视频| 日本成人中文字幕| 欧美不卡123| 精品亚洲成a人| 久久青草欧美一区二区三区| 韩国女主播一区二区三区| 日韩小视频在线观看专区| 日韩精品一级二级 | 老鸭窝一区二区久久精品| 欧美日高清视频| 日韩福利电影在线| 9191成人精品久久| 蜜臀久久99精品久久久久久9| 欧美精品日日鲁夜夜添| 日本成人在线一区| 精品国产三级电影在线观看| 国产一区欧美一区| 中文字幕av不卡| 一本色道亚洲精品aⅴ| 一区二区视频在线| 欧美精选一区二区| 激情文学综合丁香| 中文字幕一区二区三区精华液 | 中文字幕一区二区三区不卡在线 | 在线观看不卡视频| 天天色天天操综合| 欧美精品一区视频| 91麻豆swag| 婷婷国产v国产偷v亚洲高清| 日韩精品一区二区三区老鸭窝| 国产一区二区视频在线播放| 国产欧美在线观看一区| 成人禁用看黄a在线| 亚洲丝袜自拍清纯另类| 欧美日韩国产成人在线91| 久久国产精品色| 综合激情成人伊人| 日韩一区二区视频| 国产精品91一区二区| 一区二区三区在线视频免费| 欧美一级二级在线观看| 不卡视频一二三四| 图片区小说区区亚洲影院| 精品卡一卡二卡三卡四在线| 91老师片黄在线观看| 蜜桃久久久久久久| 亚洲精选视频在线| 国产午夜精品美女毛片视频| 欧美性受xxxx黑人xyx性爽| 久久se精品一区精品二区| ...xxx性欧美| 久久精品在线观看| 4438成人网| 色94色欧美sute亚洲线路一ni | 91麻豆精品秘密| 国产一区91精品张津瑜| 亚洲一区二区三区四区在线免费观看| 2023国产精品视频| 91精品国产综合久久婷婷香蕉| 99久久伊人久久99| 国产乱对白刺激视频不卡| 亚洲国产成人av网| 亚洲精品美国一| 中文字幕一区二区三区不卡| 欧美一级日韩一级| 欧美丝袜丝交足nylons| 99久久er热在这里只有精品66| 国产精品一区二区三区99| 日本三级亚洲精品| 日韩成人精品视频| 日韩一区精品视频| 亚洲电影视频在线| 亚洲一区欧美一区| 亚洲精品久久久蜜桃| 中文字幕一区二区三区色视频| 久久精品夜色噜噜亚洲a∨| 日韩午夜精品电影| 制服.丝袜.亚洲.中文.综合| 欧美中文字幕久久| 欧美在线999| 欧美性生活一区| 欧美性受极品xxxx喷水| 在线免费观看日本欧美| 欧美在线观看一二区| 91女厕偷拍女厕偷拍高清| 99精品欧美一区二区三区小说 | 欧美精三区欧美精三区| 欧美日韩激情一区二区| 欧美精品自拍偷拍动漫精品| 欧美伦理影视网| 3751色影院一区二区三区| 日韩欧美一区二区视频| 日韩女优视频免费观看| 久久―日本道色综合久久| 欧美精品一区二区三区蜜桃视频| 久久免费美女视频| 国产精品久久久久久亚洲毛片| 综合电影一区二区三区 | 国产福利91精品一区| 国产乱码精品一区二区三区av | 精品盗摄一区二区三区| 日韩欧美一级二级三级| 久久看人人爽人人| 国产精品嫩草影院av蜜臀| 亚洲视频一区在线观看| 亚洲一区二区三区四区在线免费观看| 日韩在线卡一卡二| 国产在线观看免费一区| 99热在这里有精品免费| 欧美片在线播放| 久久久影视传媒| 亚洲精品美国一| 麻豆精品视频在线观看视频| 国产成人av电影在线| 色哟哟国产精品免费观看| 欧美日韩精品免费观看视频| 精品久久久久久亚洲综合网| 国产精品久久免费看| 午夜视频一区二区| 国产成+人+日韩+欧美+亚洲| 欧美中文字幕一区二区三区亚洲| 精品区一区二区| 亚洲精品欧美在线| 国产酒店精品激情| 欧美性高清videossexo| 26uuu精品一区二区| 亚洲美女偷拍久久| 国模娜娜一区二区三区| 欧美色成人综合| 日本一二三四高清不卡| 丝袜亚洲另类欧美综合| 色综合色综合色综合| 国产精品1024| 欧美国产精品久久| 粉嫩av一区二区三区粉嫩|