?? connectionwrapper.java
字號(hào):
return this.mc.hasTriedMaster(); } public boolean isAbonormallyLongQuery(long millisOrNanos) { return this.mc.isAbonormallyLongQuery(millisOrNanos); } public boolean isNoBackslashEscapesSet() { return this.mc.isNoBackslashEscapesSet(); } public boolean lowerCaseTableNames() { return this.mc.lowerCaseTableNames(); } public boolean parserKnowsUnicode() { return this.mc.parserKnowsUnicode(); } public void reportQueryTime(long millisOrNanos) { this.mc.reportQueryTime(millisOrNanos); } public void resetServerState() throws SQLException { checkClosed(); try { this.mc.resetServerState(); } catch (SQLException sqlException) { checkAndFireConnectionError(sqlException); } } public java.sql.PreparedStatement serverPrepareStatement(String sql) throws SQLException { checkClosed(); try { return PreparedStatementWrapper.getInstance(this, this.mpc, this.mc .serverPrepareStatement(sql)); } catch (SQLException sqlException) { checkAndFireConnectionError(sqlException); } return null; } public java.sql.PreparedStatement serverPrepareStatement(String sql, int autoGenKeyIndex) throws SQLException { try { return PreparedStatementWrapper.getInstance(this, this.mpc, this.mc .serverPrepareStatement(sql, autoGenKeyIndex)); } catch (SQLException sqlException) { checkAndFireConnectionError(sqlException); } return null; } public java.sql.PreparedStatement serverPrepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException { try { return PreparedStatementWrapper.getInstance(this, this.mpc, this.mc .serverPrepareStatement(sql, resultSetType, resultSetConcurrency)); } catch (SQLException sqlException) { checkAndFireConnectionError(sqlException); } return null; } public java.sql.PreparedStatement serverPrepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException { try { return PreparedStatementWrapper.getInstance(this, this.mpc, this.mc .serverPrepareStatement(sql, resultSetType, resultSetConcurrency, resultSetHoldability)); } catch (SQLException sqlException) { checkAndFireConnectionError(sqlException); } return null; } public java.sql.PreparedStatement serverPrepareStatement(String sql, int[] autoGenKeyIndexes) throws SQLException { try { return PreparedStatementWrapper.getInstance(this, this.mpc, this.mc .serverPrepareStatement(sql, autoGenKeyIndexes)); } catch (SQLException sqlException) { checkAndFireConnectionError(sqlException); } return null; } public java.sql.PreparedStatement serverPrepareStatement(String sql, String[] autoGenKeyColNames) throws SQLException { try { return PreparedStatementWrapper.getInstance(this, this.mpc, this.mc .serverPrepareStatement(sql, autoGenKeyColNames)); } catch (SQLException sqlException) { checkAndFireConnectionError(sqlException); } return null; } public void setFailedOver(boolean flag) { this.mc.setFailedOver(flag); } public void setPreferSlaveDuringFailover(boolean flag) { this.mc.setPreferSlaveDuringFailover(flag); } public void setStatementComment(String comment) { this.mc.setStatementComment(comment); } public void shutdownServer() throws SQLException { checkClosed(); try { this.mc.shutdownServer(); } catch (SQLException sqlException) { checkAndFireConnectionError(sqlException); } } public boolean supportsIsolationLevel() { return this.mc.supportsIsolationLevel(); } public boolean supportsQuotedIdentifiers() { return this.mc.supportsQuotedIdentifiers(); } public boolean supportsTransactions() { return this.mc.supportsTransactions(); } public boolean versionMeetsMinimum(int major, int minor, int subminor) throws SQLException { checkClosed(); try { return this.mc.versionMeetsMinimum(major, minor, subminor); } catch (SQLException sqlException) { checkAndFireConnectionError(sqlException); } return false; } public String exposeAsXml() throws SQLException { checkClosed(); try { return this.mc.exposeAsXml(); } catch (SQLException sqlException) { checkAndFireConnectionError(sqlException); } return null; } public boolean getAllowLoadLocalInfile() { return this.mc.getAllowLoadLocalInfile(); } public boolean getAllowMultiQueries() { return this.mc.getAllowMultiQueries(); } public boolean getAllowNanAndInf() { return this.mc.getAllowNanAndInf(); } public boolean getAllowUrlInLocalInfile() { return this.mc.getAllowUrlInLocalInfile(); } public boolean getAlwaysSendSetIsolation() { return this.mc.getAlwaysSendSetIsolation(); } public boolean getAutoClosePStmtStreams() { return this.mc.getAutoClosePStmtStreams(); } public boolean getAutoDeserialize() { return this.mc.getAutoDeserialize(); } public boolean getAutoGenerateTestcaseScript() { return this.mc.getAutoGenerateTestcaseScript(); } public boolean getAutoReconnectForPools() { return this.mc.getAutoReconnectForPools(); } public boolean getAutoSlowLog() { return this.mc.getAutoSlowLog(); } public int getBlobSendChunkSize() { return this.mc.getBlobSendChunkSize(); } public boolean getBlobsAreStrings() { return this.mc.getBlobsAreStrings(); } public boolean getCacheCallableStatements() { return this.mc.getCacheCallableStatements(); } public boolean getCacheCallableStmts() { return this.mc.getCacheCallableStmts(); } public boolean getCachePrepStmts() { return this.mc.getCachePrepStmts(); } public boolean getCachePreparedStatements() { return this.mc.getCachePreparedStatements(); } public boolean getCacheResultSetMetadata() { return this.mc.getCacheResultSetMetadata(); } public boolean getCacheServerConfiguration() { return this.mc.getCacheServerConfiguration(); } public int getCallableStatementCacheSize() { return this.mc.getCallableStatementCacheSize(); } public int getCallableStmtCacheSize() { return this.mc.getCallableStmtCacheSize(); } public boolean getCapitalizeTypeNames() { return this.mc.getCapitalizeTypeNames(); } public String getCharacterSetResults() { return this.mc.getCharacterSetResults(); } public String getClientCertificateKeyStorePassword() { return this.mc.getClientCertificateKeyStorePassword(); } public String getClientCertificateKeyStoreType() { return this.mc.getClientCertificateKeyStoreType(); } public String getClientCertificateKeyStoreUrl() { return this.mc.getClientCertificateKeyStoreUrl(); } public String getClientInfoProvider() { return this.mc.getClientInfoProvider(); } public String getClobCharacterEncoding() { return this.mc.getClobCharacterEncoding(); } public boolean getClobberStreamingResults() { return this.mc.getClobberStreamingResults(); } public int getConnectTimeout() { return this.mc.getConnectTimeout(); } public String getConnectionCollation() { return this.mc.getConnectionCollation(); } public String getConnectionLifecycleInterceptors() { return this.mc.getConnectionLifecycleInterceptors(); } public boolean getContinueBatchOnError() { return this.mc.getContinueBatchOnError(); } public boolean getCreateDatabaseIfNotExist() { return this.mc.getCreateDatabaseIfNotExist(); } public int getDefaultFetchSize() { return this.mc.getDefaultFetchSize(); } public boolean getDontTrackOpenResources() { return this.mc.getDontTrackOpenResources(); } public boolean getDumpMetadataOnColumnNotFound() { return this.mc.getDumpMetadataOnColumnNotFound(); } public boolean getDumpQueriesOnException() { return this.mc.getDumpQueriesOnException(); } public boolean getDynamicCalendars() { return this.mc.getDynamicCalendars(); } public boolean getElideSetAutoCommits() { return this.mc.getElideSetAutoCommits(); } public boolean getEmptyStringsConvertToZero() { return this.mc.getEmptyStringsConvertToZero(); } public boolean getEmulateLocators() { return this.mc.getEmulateLocators(); } public boolean getEmulateUnsupportedPstmts() { return this.mc.getEmulateUnsupportedPstmts(); } public boolean getEnablePacketDebug() { return this.mc.getEnablePacketDebug(); } public boolean getEnableQueryTimeouts() { return this.mc.getEnableQueryTimeouts(); } public String getEncoding() { return this.mc.getEncoding(); } public boolean getExplainSlowQueries() { return this.mc.getExplainSlowQueries(); } public boolean getFailOverReadOnly() { return this.mc.getFailOverReadOnly(); } public boolean getFunctionsNeverReturnBlobs() { return this.mc.getFunctionsNeverReturnBlobs(); } public boolean getGatherPerfMetrics() { return this.mc.getGatherPerfMetrics(); } public boolean getGatherPerformanceMetrics() { return this.mc.getGatherPerformanceMetrics(); } public boolean getGenerateSimpleParameterMetadata() { return this.mc.getGenerateSimpleParameterMetadata(); } public boolean getHoldResultsOpenOverStatementClose() { return this.mc.getHoldResultsOpenOverStatementClose(); } public boolean getIgnoreNonTxTables() { return this.mc.getIgnoreNonTxTables(); } public boolean getIncludeInnodbStatusInDeadlockExceptions() { return this.mc.getIncludeInnodbStatusInDeadlockExceptions(); } public int getInitialTimeout() { return this.mc.getInitialTimeout(); } public boolean getInteractiveClient() { return this.mc.getInteractiveClient(); } public boolean getIsInteractiveClient() { return this.mc.getIsInteractiveClient(); } public boolean getJdbcCompliantTruncation() { return this.mc.getJdbcCompliantTruncation(); } public boolean getJdbcCompliantTruncationForReads() { return this.mc.getJdbcCompliantTruncationForReads(); } public String getLargeRowSizeThreshold() { return this.mc.getLargeRowSizeThreshold(); } public String getLoadBalanceStrategy() { return this.mc.getLoadBalanceStrategy(); } public String getLocalSocketAddress() { return this.mc.getLocalSocketAddress(); } public int getLocatorFetchBufferSize() { return this.mc.getLocatorFetchBufferSize(); } public boolean getLogSlowQueries() { return this.mc.getLogSlowQueries(); } public boolean getLogXaCommands() { return this.mc.getLogXaCommands(); } public String getLogger() { return this.mc.getLogger(); } public String getLoggerClassName() { return this.mc.getLoggerClassName(); } public boolean getMaintainTimeStats() { return this.mc.getMaintainTimeStats(); } public int getMaxQuerySizeToLog() { return this.mc.getMaxQuerySizeToLog(); } public int getMaxReconnects() { return this.mc.getMaxReconnects(); } public int getMaxRows() { return this.mc.getMaxRows(); } public int getMetadataCacheSize() { return this.mc.getMetadataCacheSize(); } public int getNetTimeoutForStreamingResults() { return this.mc.getNetTimeoutForStreamingResults(); } public boolean getNoAccessToProcedureBodies() { return this.mc.getNoAccessToProcedureBodies(); } public boolean getNoDatetimeStringSync() { return this.mc.getNoDatetimeStringSync(); } public boolean getNoTimezoneConversionForTimeType() { return this.mc.getNoTimezoneConversionForTimeType(); } public boolean getNullCatalogMeansCurrent() { return this.mc.getNullCatalogMeansCurrent(); } public boolean getNullNamePatternMatchesAll() { return this.mc.getNullNamePatternMatchesAll(); } public boolean getOverrideSupportsIntegrityEnhancementFacility() { return this.mc.getOverrideSupportsIntegrityEnhancementFacility(); } public int getPacketDebugBufferSize() { return this.mc.getPacketDebugBufferSize(); } public boolean getPadCharsWithSpace() { return this.mc.getPadCharsWithSpace(); } public boolean getParanoid() { return this.mc.getParanoid(); } public boolean getPedantic() {
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -