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

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

?? connectionproperties.java

?? mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
			"If the usage advisor is enabled, how many rows should a result set contain before the driver warns that it "			+ " is suspiciously large?", "5.0.5", DEBUGING_PROFILING_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty retainStatementAfterResultSetClose = new BooleanConnectionProperty(			"retainStatementAfterResultSetClose",			false,			"Should the driver retain the Statement reference in a ResultSet after ResultSet.close()"					+ " has been called. This is not JDBC-compliant after JDBC-4.0.",			"3.1.11", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty rewriteBatchedStatements = new BooleanConnectionProperty(			"rewriteBatchedStatements",			false,			"Should the driver use multiqueries (irregardless of the setting of \"allowMultiQueries\") as well as "			+ "rewriting of prepared statements for INSERT and REPLACE into multi-value inserts/replaces when executeBatch() is called? Notice that this has the potential "			+ "for SQL injection if using plain java.sql.Statements and your code doesn't sanitize input correctly.\n\n"			+ "Notice that if you don't specify stream lengths when using PreparedStatement.set*Stream(),"			+ "the driver won't be able to determine the optimium number of parameters per batch and you might receive "			+ "an error from the driver that the resultant packet is too large.\n\n"			+ "Statement.getGeneratedKeys() for these rewritten statements only works when the entire "			+ "batch includes INSERT statements.",			"3.1.13", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty rollbackOnPooledClose = new BooleanConnectionProperty(			"rollbackOnPooledClose",			true,			"Should the driver issue a rollback() when the logical connection in a pool is closed?",			"3.0.15", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty roundRobinLoadBalance = new BooleanConnectionProperty(			"roundRobinLoadBalance",			false,			"When autoReconnect is enabled, and failoverReadonly is false, should we pick hosts to connect to on a round-robin basis?",			"3.1.2", HA_CATEGORY, 5);	private BooleanConnectionProperty runningCTS13 = new BooleanConnectionProperty(			"runningCTS13",			false,			"Enables workarounds for bugs in Sun's JDBC compliance testsuite version 1.3",			"3.1.7", MISC_CATEGORY, Integer.MIN_VALUE);	private IntegerConnectionProperty secondsBeforeRetryMaster = new IntegerConnectionProperty(			"secondsBeforeRetryMaster",			30,			1,			Integer.MAX_VALUE,			"How long should the driver wait, when failed over, before attempting "					+ "to reconnect to the master server? Whichever condition is met first, "					+ "'queriesBeforeRetryMaster' or 'secondsBeforeRetryMaster' will cause an "					+ "attempt to be made to reconnect to the master. Time in seconds, defaults to 30",			"3.0.2", HA_CATEGORY, 8);	private StringConnectionProperty serverTimezone = new StringConnectionProperty(			"serverTimezone",			null,			"Override detection/mapping of timezone. Used when timezone from server doesn't map to Java timezone",			"3.0.2", MISC_CATEGORY, Integer.MIN_VALUE);	private StringConnectionProperty sessionVariables = new StringConnectionProperty(			"sessionVariables", null,			"A comma-separated list of name/value pairs to be sent as SET SESSION ... to "					+ " the server when the driver connects.", "3.1.8",			MISC_CATEGORY, Integer.MAX_VALUE);	private IntegerConnectionProperty slowQueryThresholdMillis = new IntegerConnectionProperty(			"slowQueryThresholdMillis",			2000,			0,			Integer.MAX_VALUE,			"If 'logSlowQueries' is enabled, how long should a query (in ms) before it is logged as 'slow'?",			"3.1.2", DEBUGING_PROFILING_CATEGORY, 9);	private LongConnectionProperty slowQueryThresholdNanos = new LongConnectionProperty(			"slowQueryThresholdNanos",			0,			"If 'useNanosForElapsedTime' is set to true, and this property is set to a non-zero value,"			+ " the driver will use this threshold (in nanosecond units) to determine if a query was slow.",			"5.0.7",			DEBUGING_PROFILING_CATEGORY,			10);	private StringConnectionProperty socketFactoryClassName = new StringConnectionProperty(			"socketFactory",			StandardSocketFactory.class.getName(),			"The name of the class that the driver should use for creating socket connections to the server. This class must implement the interface 'com.mysql.jdbc.SocketFactory' and have public no-args constructor.",			"3.0.3", CONNECTION_AND_AUTH_CATEGORY, 4);	private IntegerConnectionProperty socketTimeout = new IntegerConnectionProperty(			"socketTimeout",			0,			0,			Integer.MAX_VALUE,			"Timeout on network socket operations (0, the default means no timeout).",			"3.0.1", CONNECTION_AND_AUTH_CATEGORY, 10);	private BooleanConnectionProperty strictFloatingPoint = new BooleanConnectionProperty(			"strictFloatingPoint", false,			"Used only in older versions of compliance test", "3.0.0",			MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty strictUpdates = new BooleanConnectionProperty(			"strictUpdates",			true,			"Should the driver do strict checking (all primary keys selected) of updatable result sets (true, false, defaults to 'true')?",			"3.0.4", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty overrideSupportsIntegrityEnhancementFacility =		new BooleanConnectionProperty("overrideSupportsIntegrityEnhancementFacility",				false,				"Should the driver return \"true\" for DatabaseMetaData.supportsIntegrityEnhancementFacility() "				+ "even if the database doesn't support it to workaround applications that require this method to return "				+ "\"true\" to signal support of foreign keys, even though the SQL specification states that this facility "				+ "contains much more than just foreign key support (one such application being OpenOffice)?",				"3.1.12", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty tcpNoDelay = new BooleanConnectionProperty(			StandardSocketFactory.TCP_NO_DELAY_PROPERTY_NAME,			Boolean.valueOf(StandardSocketFactory.TCP_NO_DELAY_DEFAULT_VALUE).booleanValue(),			"If connecting using TCP/IP, should the driver set SO_TCP_NODELAY (disabling the Nagle Algorithm)?",			"5.0.7", NETWORK_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty tcpKeepAlive = new BooleanConnectionProperty(			StandardSocketFactory.TCP_KEEP_ALIVE_PROPERTY_NAME,			Boolean.valueOf(StandardSocketFactory.TCP_KEEP_ALIVE_DEFAULT_VALUE).booleanValue(),			"If connecting using TCP/IP, should the driver set SO_KEEPALIVE?",			"5.0.7", NETWORK_CATEGORY, Integer.MIN_VALUE);	private IntegerConnectionProperty tcpRcvBuf = new IntegerConnectionProperty(			StandardSocketFactory.TCP_RCV_BUF_PROPERTY_NAME,			Integer.parseInt(StandardSocketFactory.TCP_RCV_BUF_DEFAULT_VALUE),			0, Integer.MAX_VALUE,			"If connecting using TCP/IP, should the driver set SO_RCV_BUF to the given value? "			+ "The default value of '0', means use the platform default value for this property)",			"5.0.7", NETWORK_CATEGORY, Integer.MIN_VALUE);	private IntegerConnectionProperty tcpSndBuf = new IntegerConnectionProperty(			StandardSocketFactory.TCP_SND_BUF_PROPERTY_NAME,			Integer.parseInt(StandardSocketFactory.TCP_SND_BUF_DEFAULT_VALUE),			0, Integer.MAX_VALUE,			"If connecting using TCP/IP, shuold the driver set SO_SND_BUF to the given value? "			+ "The default value of '0', means use the platform default value for this property)",			"5.0.7", NETWORK_CATEGORY, Integer.MIN_VALUE);	private IntegerConnectionProperty tcpTrafficClass = new IntegerConnectionProperty(			StandardSocketFactory.TCP_TRAFFIC_CLASS_PROPERTY_NAME,			Integer.parseInt(StandardSocketFactory.TCP_TRAFFIC_CLASS_DEFAULT_VALUE),			0, 255,			"If connecting using TCP/IP, should the driver set traffic class or type-of-service fields ?" +			" See the documentation for java.net.Socket.setTrafficClass() for more information.",			"5.0.7", NETWORK_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty tinyInt1isBit = new BooleanConnectionProperty(			"tinyInt1isBit",			true,			"Should the driver treat the datatype TINYINT(1) as the BIT type "					+ "(because the server silently converts BIT -> TINYINT(1) when creating tables)?",			"3.0.16", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty traceProtocol = new BooleanConnectionProperty(			"traceProtocol", false,			"Should trace-level network protocol be logged?", "3.1.2",			DEBUGING_PROFILING_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty treatUtilDateAsTimestamp = new BooleanConnectionProperty(			"treatUtilDateAsTimestamp", true,			"Should the driver treat java.util.Date as a TIMESTAMP for the purposes of PreparedStatement.setObject()?",			"5.0.5", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty transformedBitIsBoolean = new BooleanConnectionProperty(			"transformedBitIsBoolean",			false,			"If the driver converts TINYINT(1) to a different type, should it use BOOLEAN instead of BIT "					+ " for future compatibility with MySQL-5.0, as MySQL-5.0 has a BIT type?",			"3.1.9", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useCompression = new BooleanConnectionProperty(			"useCompression",			false,			"Use zlib compression when communicating with the server (true/false)? Defaults to 'false'.",			"3.0.17", CONNECTION_AND_AUTH_CATEGORY, Integer.MIN_VALUE);	private StringConnectionProperty useConfigs = new StringConnectionProperty(			"useConfigs",			null,			"Load the comma-delimited list of configuration properties before parsing the "					+ "URL or applying user-specified properties. These configurations are explained in the 'Configurations' of the documentation.",			"3.1.5", CONNECTION_AND_AUTH_CATEGORY, Integer.MAX_VALUE);	private BooleanConnectionProperty useCursorFetch = new BooleanConnectionProperty(			"useCursorFetch",			false,			"If connected to MySQL > 5.0.2, and setFetchSize() > 0 on a statement, should "			+ " that statement use cursor-based fetching to retrieve rows?",			"5.0.0", PERFORMANCE_CATEGORY, Integer.MAX_VALUE);	private BooleanConnectionProperty useDynamicCharsetInfo = new BooleanConnectionProperty(			"useDynamicCharsetInfo",			true,			"Should the driver use a per-connection cache of character set information queried from the "			+ " server when necessary, or use a built-in static mapping that is more efficient, but isn't "			+ " aware of custom character sets or character sets implemented after the release of the JDBC driver?"			+ "(this only affects the \"padCharsWithSpace\" configuration property and the "			+ "ResultSetMetaData.getColumnDisplayWidth() method)."			, "5.0.6", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useFastIntParsing = new BooleanConnectionProperty(			"useFastIntParsing",			true,			"Use internal String->Integer conversion routines to avoid excessive object creation?",			"3.1.4", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useFastDateParsing = new BooleanConnectionProperty(			"useFastDateParsing",			true,			"Use internal String->Date/Time/Teimstamp conversion routines to avoid excessive object creation?",			"5.0.5", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useHostsInPrivileges = new BooleanConnectionProperty(			"useHostsInPrivileges",			true,			"Add '@hostname' to users in DatabaseMetaData.getColumn/TablePrivileges() (true/false), defaults to 'true'.",			"3.0.2", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useInformationSchema = new BooleanConnectionProperty(			"useInformationSchema",			false,			"When connected to MySQL-5.0.7 or newer, should the driver use the INFORMATION_SCHEMA to "			+ " derive information used by DatabaseMetaData?",			"5.0.0", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useJDBCCompliantTimezoneShift = new BooleanConnectionProperty(			"useJDBCCompliantTimezoneShift",			false,			"Should the driver use JDBC-compliant rules when converting TIME/TIMESTAMP/DATETIME values' timezone information " +			"for those JDBC arguments which take a java.util.Calendar argument? (Notice that this " +			"option is exclusive of the \"useTimezone=true\" configuration option.)",			"5.0.0",			MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useLocalSessionState = new BooleanConnectionProperty(			"useLocalSessionState",			false,			"Should the driver refer to the internal values of autocommit and transaction isolation that are set "					+ "by Connection.setAutoCommit() and Connection.setTransactionIsolation() and transaction state "					+ "as maintained by the protocol, rather than querying the database or blindly "					+ "sending commands to the database for commit() or rollback() method calls?",			"3.1.7", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useNanosForElapsedTime = new BooleanConnectionProperty(			"useNanosForElapsedTime",			false,			"For profiling/debugging functionality that measures elapsed time, should the driver "			+ "try to use nanoseconds resolution if available (JDK >= 1.5)?",			"5.0.7",			DEBUGING_PROFILING_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useOldAliasMetadataBehavior = new BooleanConnectionProperty(			"useOldAliasMetadataBehavior",			true,			"Should the driver use the legacy behavior for \"AS\" clauses on columns and tables, and only "		    + "return aliases (if any) for ResultSetMetaData.getColumnName() or ResultSetMetaData.getTableName() "		    + "rather than the original column/table name?",		    "5.0.4",		    MISC_CATEGORY,		    Integer.MIN_VALUE);	private BooleanConnectionProperty useOldUTF8Behavior = new BooleanConnectionProperty(			"useOldUTF8Behavior",			false,			"Use the UTF-8 behavior the driver did when communicating with 4.0 and older servers",			"3.1.6", MISC_CATEGORY, Integer.MIN_VALUE);	private boolean useOldUTF8BehaviorAsBoolean = false;	private BooleanConnectionProperty useOnlyServerErrorMessages = new BooleanConnectionProperty(			"useOnlyServerErrorMessages",			true,			"Don't prepend 'standard' SQLState error messages to error messages returned by the server.",			"3.0.15", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useReadAheadInput = new BooleanConnectionProperty(			"useReadAheadInput",			true,			"Use newer, optimized non-blocking, buffered input stream when reading from the server?",			"3.1.5", PERFORMANCE_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useSqlStateCodes = new BooleanConnectionProperty(			"useSqlStateCodes",			true,			"Use SQL Standard state codes instead of 'legacy' X/Open/SQL state codes (true/false), default is 'true'",			"3.1.3", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useSSL = new BooleanConnectionProperty(			"useSSL",			false,			"Use SSL when communicating with the server (true/false), defaults to 'false'",			"3.0.2", SECURITY_CATEGORY, 2);	private BooleanConnectionProperty useSSPSCompatibleTimezoneShift = new BooleanConnectionProperty(			"useSSPSCompatibleTimezoneShift",			false,			"If migrating from an environment that was using server-side prepared statements, and the"			+ " configuration property \"useJDBCCompliantTimeZoneShift\" set to \"true\", use compatible behavior"			+ " when not using server-side prepared statements when sending TIMESTAMP values to the MySQL server.",			"5.0.5", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useStreamLengthsInPrepStmts = new BooleanConnectionProperty(			"useStreamLengthsInPrepStmts",			true,			"Honor stream length parameter in "					+ "PreparedStatement/ResultSet.setXXXStream() method calls (true/false, defaults to 'true')?",			"3.0.2", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useTimezone = new BooleanConnectionProperty(			"useTimezone",			false,			"Convert time/date types between client and server timezones (true/false, defaults to 'false')?",			"3.0.2", MISC_CATEGORY, Integer.MIN_VALUE);	private BooleanConnectionProperty useUltraDevWorkAround = new BooleanConnectionProperty(			"ultraDevHack",			false,			"Create PreparedSta

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美成人一区二区三区片免费| 麻豆成人在线观看| 成人av免费在线| 中文成人av在线| 99久久亚洲一区二区三区青草| 久久久高清一区二区三区| 国产精品99久| 最好看的中文字幕久久| 在线观看日韩电影| 蜜桃av一区二区在线观看| 久久久久久久久99精品| 成人的网站免费观看| 亚洲综合免费观看高清在线观看| 欧美喷潮久久久xxxxx| 经典一区二区三区| 亚洲欧洲精品一区二区三区 | 一级中文字幕一区二区| 欧美三级日韩三级国产三级| 男人操女人的视频在线观看欧美| 精品国产制服丝袜高跟| 99久久精品情趣| 视频在线在亚洲| 国产精品对白交换视频| 91精品婷婷国产综合久久性色 | 成人av午夜影院| 亚洲综合成人在线| 久久综合99re88久久爱| 日本精品一级二级| 麻豆极品一区二区三区| 亚洲国产高清在线观看视频| 在线精品视频免费观看| 精一区二区三区| 亚洲三级免费观看| 精品国产伦一区二区三区观看方式 | 日韩黄色一级片| 香蕉av福利精品导航| 日韩女优视频免费观看| 一本大道综合伊人精品热热| 青青草国产精品亚洲专区无| 国产精品高潮久久久久无| 日韩一级片网址| 色999日韩国产欧美一区二区| 久草这里只有精品视频| 一区二区三区四区在线播放| 久久久精品黄色| 91精品欧美久久久久久动漫 | 日本美女视频一区二区| 亚洲人精品午夜| 久久久久国产精品厨房| 欧美久久久一区| 日本精品一区二区三区高清 | 中文字幕一区视频| 欧美精品一区男女天堂| 欧美日产在线观看| 色哟哟在线观看一区二区三区| 国产精品综合在线视频| 日本伊人色综合网| 亚洲国产欧美日韩另类综合| 国产精品久久久久久久浪潮网站 | 国产午夜精品福利| 欧美一级爆毛片| 欧美日韩中文字幕精品| 91在线视频观看| 不卡的电影网站| 国产成人精品午夜视频免费| 国内欧美视频一区二区| 婷婷成人激情在线网| 亚洲色图欧洲色图婷婷| 亚洲欧美在线观看| 中文字幕日本乱码精品影院| 久久综合狠狠综合久久综合88| 欧美成人欧美edvon| 91精选在线观看| 欧美一级国产精品| 日韩视频免费观看高清完整版 | 国产精品亚洲专一区二区三区| 日本中文一区二区三区| 丝袜诱惑制服诱惑色一区在线观看| 亚洲欧洲日产国产综合网| 综合色天天鬼久久鬼色| 亚洲免费av高清| 亚洲综合成人网| 午夜精品视频一区| 五月天婷婷综合| 美女网站色91| 国产一区二区三区视频在线播放| 国产综合色视频| 国产乱子伦视频一区二区三区 | 亚洲sss视频在线视频| 亚洲国产精品久久一线不卡| 亚洲一区二区三区四区五区黄| 一区二区三区四区在线| 亚洲国产精品一区二区www在线| 日韩精品一卡二卡三卡四卡无卡| 久久精工是国产品牌吗| 国产成人精品aa毛片| 成人黄色在线视频| 欧美日韩久久不卡| 日韩视频一区在线观看| 国产亚洲欧美色| 亚洲同性gay激情无套| 亚洲丶国产丶欧美一区二区三区| 青青青爽久久午夜综合久久午夜| 国产伦精品一区二区三区免费| 成人一区在线看| 欧美午夜精品一区二区三区| 91麻豆精品国产91久久久久久久久| 精品国产乱码久久久久久免费| 国产日韩欧美一区二区三区乱码 | 一区二区三区成人| 日本成人中文字幕在线视频| 国产一区二区在线电影| 91一区一区三区| 日韩一区国产二区欧美三区| 国产调教视频一区| 亚洲一级二级三级| 国内成人精品2018免费看| 成人天堂资源www在线| 欧美性生活久久| 欧美v国产在线一区二区三区| 精品国产乱码久久久久久浪潮 | 午夜视频久久久久久| 国产一区二区在线影院| 欧美午夜片在线看| 91精品国产91综合久久蜜臀| 国产视频一区二区在线| 偷窥少妇高潮呻吟av久久免费| 国产电影精品久久禁18| 欧美日韩国产123区| 精品人伦一区二区色婷婷| 亚洲精品成a人| 国产盗摄视频一区二区三区| 欧美精品777| 亚洲欧美日韩在线| 国产成人免费在线视频| 欧美老人xxxx18| 亚洲欧美激情一区二区| 国产成人精品一区二| 日韩一区二区三区在线| 一区二区三区在线视频免费| 国产精品一区二区久久不卡 | 国产欧美一区视频| 日本成人在线电影网| 色综合天天综合给合国产| 久久免费精品国产久精品久久久久 | 亚洲在线视频一区| 97超碰欧美中文字幕| 久久久亚洲精品一区二区三区| 亚洲成人福利片| 一本色道久久综合亚洲aⅴ蜜桃 | 国产精品美女久久久久久| 国内精品国产成人国产三级粉色| 在线播放国产精品二区一二区四区| 最好看的中文字幕久久| 国产成人在线视频网站| 久久一留热品黄| 免费成人性网站| 日韩一级高清毛片| 午夜欧美一区二区三区在线播放| 色老头久久综合| 亚洲女人****多毛耸耸8| 成人免费三级在线| 国产精品女同互慰在线看| 国产成人av影院| 国产视频不卡一区| 成人福利视频网站| 中文字幕中文在线不卡住| 菠萝蜜视频在线观看一区| 国产精品久99| 不卡欧美aaaaa| 亚洲精品亚洲人成人网| 色综合久久综合中文综合网| 亚洲精品菠萝久久久久久久| 91久久精品一区二区| 亚洲一区二区三区美女| 欧美日韩一区二区在线观看| 亚洲高清不卡在线观看| 欧美男生操女生| 久久国产精品无码网站| 久久久久久久久97黄色工厂| 国产成人精品综合在线观看| 国产精品第一页第二页第三页| 波多野结衣91| 一区二区三区国产精品| 欧美精品自拍偷拍| 国产一区欧美一区| 亚洲精品综合在线| 5566中文字幕一区二区电影| 久久av中文字幕片| 中文字幕av一区二区三区高| 99精品视频一区二区| 亚洲自拍与偷拍| 日韩午夜激情av| 高清在线观看日韩| 亚洲欧美成aⅴ人在线观看| 在线91免费看| 成人午夜视频在线| 亚洲18影院在线观看| 精品精品国产高清a毛片牛牛| 成人性视频网站|