MySQL Connector/J size='-1'>5.0.8

Serialized Form


Package com.mysql.jdbc

Class com.mysql.jdbc.AssertionFailedException extends java.lang.RuntimeException implements Serializable

Class com.mysql.jdbc.CommunicationsException extends java.sql.SQLException implements Serializable

Serialized Fields

exceptionMessage

java.lang.String exceptionMessage

streamingResultSetInPlay

boolean streamingResultSetInPlay

Class com.mysql.jdbc.Connection extends ConnectionProperties implements Serializable

Serialized Fields

autoCommit

boolean autoCommit
Are we in autoCommit mode?


cachedPreparedStatementParams

java.util.Map<K,V> cachedPreparedStatementParams
A map of SQL to parsed prepared statement parameters.


characterSetMetadata

java.lang.String characterSetMetadata
For servers > 4.1.0, what character set is the metadata returned in?


characterSetResultsOnServer

java.lang.String characterSetResultsOnServer
The character set we want results and result metadata returned in (null == results in any charset, metadata in UTF-8).


charsetConverterMap

java.util.Map<K,V> charsetConverterMap
Holds cached mappings to charset converters to avoid static synchronization and at the same time save memory (each charset converter takes approx 65K of static data).


charsetToNumBytesMap

java.util.Map<K,V> charsetToNumBytesMap
The mapping between MySQL charset names and the max number of chars in them. Lazily instantiated via getMaxBytesPerChar().


connectionCreationTimeMillis

long connectionCreationTimeMillis
The point in time when this connection was created


connectionId

long connectionId
ID used when profiling


database

java.lang.String database
The database we're currently using (called Catalog in JDBC terms).


dbmd

DatabaseMetaData dbmd
Internal DBMD to use for various database-version specific features


defaultTimeZone

java.util.TimeZone defaultTimeZone

eventSink

ProfileEventSink eventSink
The event sink to use for profiling


executingFailoverReconnect

boolean executingFailoverReconnect

failedOver

boolean failedOver
Are we failed-over to a non-master host


forceClosedReason

java.lang.Throwable forceClosedReason
Why was this connection implicitly closed, if known? (for diagnostics)


forcedClosedLocation

java.lang.Throwable forcedClosedLocation
Where was this connection implicitly closed? (for diagnostics)


hasIsolationLevels

boolean hasIsolationLevels
Does the server suuport isolation levels?


hasQuotedIdentifiers

boolean hasQuotedIdentifiers
Does this version of MySQL support quoted identifiers?


host

java.lang.String host
The hostname we're connected to


hostList

java.util.List<E> hostList
The list of host(s) to try and connect to


hostListSize

int hostListSize
How many hosts are in the host list?


indexToCharsetMapping

java.lang.String[] indexToCharsetMapping
We need this 'bootstrapped', because 4.1 and newer will send fields back with this even before we fill this dynamically from the server.


io

com.mysql.jdbc.MysqlIO io
The I/O abstraction interface (network conn to MySQL server


isClientTzUTC

boolean isClientTzUTC

isClosed

boolean isClosed
Has this connection been closed?


isInGlobalTx

boolean isInGlobalTx
Is this connection associated with a global tx?


isRunningOnJDK13

boolean isRunningOnJDK13
Is this connection running inside a JDK-1.3 VM?


isolationLevel

int isolationLevel
isolation level


isServerTzUTC

boolean isServerTzUTC

lastQueryFinishedTime

long lastQueryFinishedTime
When did the last query finish?


log

Log log
The logger we're going to use


longestQueryTimeMs

long longestQueryTimeMs
If gathering metrics, what was the execution time of the longest query so far ?


lowerCaseTableNames

boolean lowerCaseTableNames
Is the server configured to use lower-case table names only?


masterFailTimeMillis

long masterFailTimeMillis
When did the master fail?


maxAllowedPacket

int maxAllowedPacket
The largest packet we can send (changed once we know what the server supports, we get this at connection init).


maximumNumberTablesAccessed

long maximumNumberTablesAccessed

maxRowsChanged

boolean maxRowsChanged
Has the max-rows setting been changed from the default?


metricsLastReportedMs

long metricsLastReportedMs
When was the last time we reported metrics?


minimumNumberTablesAccessed

long minimumNumberTablesAccessed

mutex

java.lang.Object mutex
Mutex


myURL

java.lang.String myURL
The JDBC URL we're using


needsPing

boolean needsPing
Does this connection need to be tested?


netBufferLength

int netBufferLength

noBackslashEscapes

boolean noBackslashEscapes

numberOfPreparedExecutes

long numberOfPreparedExecutes

numberOfPrepares

long numberOfPrepares

numberOfQueriesIssued

long numberOfQueriesIssued

numberOfResultSetsCreated

long numberOfResultSetsCreated

numTablesMetricsHistBreakpoints

long[] numTablesMetricsHistBreakpoints

numTablesMetricsHistCounts

int[] numTablesMetricsHistCounts

oldHistBreakpoints

long[] oldHistBreakpoints

oldHistCounts

int[] oldHistCounts

openStatements

java.util.Map<K,V> openStatements
A map of currently open statements


parsedCallableStatementCache

LRUCache parsedCallableStatementCache

parserKnowsUnicode

boolean parserKnowsUnicode

password

java.lang.String password
The password we used


perfMetricsHistBreakpoints

long[] perfMetricsHistBreakpoints

perfMetricsHistCounts

int[] perfMetricsHistCounts

pointOfOrigin

java.lang.Throwable pointOfOrigin
Point of origin where this Connection was created


port

int port
The port number we're connected to (defaults to 3306)


preferSlaveDuringFailover

boolean preferSlaveDuringFailover
Used only when testing failover functionality for regressions, causes the failover code to not retry the master first


props

java.util.Properties props
Properties for this connection specified by user


queriesIssuedFailedOver

long queriesIssuedFailedOver
Number of queries we've issued since the master failed


readInfoMsg

boolean readInfoMsg
Should we retrieve 'info' messages from the server?


readOnly

boolean readOnly
Are we in read-only mode?


resultSetMetadataCache

LRUCache resultSetMetadataCache
Cache of ResultSet metadata


serverTimezoneTZ

java.util.TimeZone serverTimezoneTZ
The timezone of the server


serverVariables

java.util.Map<K,V> serverVariables
The map of server variables that we retrieve at connection init.


shortestQueryTimeMs

long shortestQueryTimeMs

statementsUsingMaxRows

java.util.Map<K,V> statementsUsingMaxRows
A map of statements that have had setMaxRows() called on them


totalQueryTimeMs

double totalQueryTimeMs

transactionsSupported

boolean transactionsSupported
Are transactions supported by the MySQL server we are connected to?


typeMap

java.util.Map<K,V> typeMap
The type map for UDTs (not implemented, but used by some third-party vendors, most notably IBM WebSphere)


useAnsiQuotes

boolean useAnsiQuotes
Has ANSI_QUOTES been enabled on the server?


user

java.lang.String user
The user we're connected as


useServerPreparedStmts

boolean useServerPreparedStmts
Should we use server-side prepared statements? (auto-detected, but can be disabled by user)


serverSideStatementCheckCache

LRUCache serverSideStatementCheckCache

serverSideStatementCache

LRUCache serverSideStatementCache

sessionCalendar

java.util.Calendar sessionCalendar

utcCalendar

java.util.Calendar utcCalendar

origHostToConnectTo

java.lang.String origHostToConnectTo

origPortToConnectTo

int origPortToConnectTo

origDatabaseToConnectTo

java.lang.String origDatabaseToConnectTo

errorMessageEncoding

java.lang.String errorMessageEncoding

usePlatformCharsetConverters

boolean usePlatformCharsetConverters

usingCachedConfig

boolean usingCachedConfig

hasTriedMasterFlag

boolean hasTriedMasterFlag

Class com.mysql.jdbc.ConnectionFeatureNotAvailableException extends CommunicationsException implements Serializable

Class com.mysql.jdbc.ConnectionProperties extends java.lang.Object implements Serializable

serialVersionUID: 4257801713007640580L

Serialized Fields

allowLoadLocalInfile

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty allowLoadLocalInfile

allowMultiQueries

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty allowMultiQueries

allowNanAndInf

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty allowNanAndInf

allowUrlInLocalInfile

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty allowUrlInLocalInfile

alwaysSendSetIsolation

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty alwaysSendSetIsolation

autoClosePStmtStreams

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty autoClosePStmtStreams

autoDeserialize

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty autoDeserialize

autoGenerateTestcaseScript

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty autoGenerateTestcaseScript

autoGenerateTestcaseScriptAsBoolean

boolean autoGenerateTestcaseScriptAsBoolean

autoReconnect

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty autoReconnect

autoReconnectForPools

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty autoReconnectForPools

autoReconnectForPoolsAsBoolean

boolean autoReconnectForPoolsAsBoolean

blobSendChunkSize

com.mysql.jdbc.ConnectionProperties.MemorySizeConnectionProperty blobSendChunkSize

blobsAreStrings

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty blobsAreStrings

functionsNeverReturnBlobs

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty functionsNeverReturnBlobs

cacheCallableStatements

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty cacheCallableStatements

cachePreparedStatements

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty cachePreparedStatements

cacheResultSetMetadata

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty cacheResultSetMetadata

cacheResultSetMetaDataAsBoolean

boolean cacheResultSetMetaDataAsBoolean

cacheServerConfiguration

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty cacheServerConfiguration

callableStatementCacheSize

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty callableStatementCacheSize

capitalizeTypeNames

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty capitalizeTypeNames

characterEncoding

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty characterEncoding

characterEncodingAsString

java.lang.String characterEncodingAsString

characterSetResults

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty characterSetResults

clobberStreamingResults

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty clobberStreamingResults

clobCharacterEncoding

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty clobCharacterEncoding

connectionCollation

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty connectionCollation

connectTimeout

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty connectTimeout

continueBatchOnError

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty continueBatchOnError

createDatabaseIfNotExist

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty createDatabaseIfNotExist

defaultFetchSize

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty defaultFetchSize

detectServerPreparedStmts

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty detectServerPreparedStmts

dontTrackOpenResources

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty dontTrackOpenResources

dumpQueriesOnException

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty dumpQueriesOnException

dynamicCalendars

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty dynamicCalendars

elideSetAutoCommits

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty elideSetAutoCommits

emptyStringsConvertToZero

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty emptyStringsConvertToZero

emulateLocators

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty emulateLocators

emulateUnsupportedPstmts

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty emulateUnsupportedPstmts

enablePacketDebug

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty enablePacketDebug

enableQueryTimeouts

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty enableQueryTimeouts

explainSlowQueries

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty explainSlowQueries

failOverReadOnly

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty failOverReadOnly
When failed-over, set connection to read-only?


gatherPerformanceMetrics

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty gatherPerformanceMetrics

generateSimpleParameterMetadata

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty generateSimpleParameterMetadata

highAvailabilityAsBoolean

boolean highAvailabilityAsBoolean

holdResultsOpenOverStatementClose

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty holdResultsOpenOverStatementClose

includeInnodbStatusInDeadlockExceptions

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty includeInnodbStatusInDeadlockExceptions

ignoreNonTxTables

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty ignoreNonTxTables

initialTimeout

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty initialTimeout

isInteractiveClient

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty isInteractiveClient

jdbcCompliantTruncation

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty jdbcCompliantTruncation

jdbcCompliantTruncationForReads

boolean jdbcCompliantTruncationForReads

loadBalanceStrategy

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty loadBalanceStrategy

localSocketAddress

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty localSocketAddress

locatorFetchBufferSize

com.mysql.jdbc.ConnectionProperties.MemorySizeConnectionProperty locatorFetchBufferSize

loggerClassName

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty loggerClassName

logSlowQueries

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty logSlowQueries

logXaCommands

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty logXaCommands

maintainTimeStats

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty maintainTimeStats

maintainTimeStatsAsBoolean

boolean maintainTimeStatsAsBoolean

maxQuerySizeToLog

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty maxQuerySizeToLog

maxReconnects

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty maxReconnects

maxRows

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty maxRows

maxRowsAsInt

int maxRowsAsInt

metadataCacheSize

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty metadataCacheSize

noAccessToProcedureBodies

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty noAccessToProcedureBodies

noDatetimeStringSync

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty noDatetimeStringSync

noTimezoneConversionForTimeType

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty noTimezoneConversionForTimeType

nullCatalogMeansCurrent

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty nullCatalogMeansCurrent

nullNamePatternMatchesAll

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty nullNamePatternMatchesAll

packetDebugBufferSize

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty packetDebugBufferSize

padCharsWithSpace

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty padCharsWithSpace

paranoid

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty paranoid

pedantic

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty pedantic

pinGlobalTxToPhysicalConnection

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty pinGlobalTxToPhysicalConnection

populateInsertRowWithDefaultValues

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty populateInsertRowWithDefaultValues

preparedStatementCacheSize

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty preparedStatementCacheSize

preparedStatementCacheSqlLimit

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty preparedStatementCacheSqlLimit

processEscapeCodesForPrepStmts

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty processEscapeCodesForPrepStmts

profileSql

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty profileSql

profileSQL

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty profileSQL

profileSQLAsBoolean

boolean profileSQLAsBoolean

propertiesTransform

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty propertiesTransform

queriesBeforeRetryMaster

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty queriesBeforeRetryMaster

reconnectAtTxEnd

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty reconnectAtTxEnd

reconnectTxAtEndAsBoolean

boolean reconnectTxAtEndAsBoolean

relaxAutoCommit

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty relaxAutoCommit

reportMetricsIntervalMillis

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty reportMetricsIntervalMillis

requireSSL

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty requireSSL

resourceId

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty resourceId

resultSetSizeThreshold

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty resultSetSizeThreshold

retainStatementAfterResultSetClose

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty retainStatementAfterResultSetClose

rewriteBatchedStatements

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty rewriteBatchedStatements

rollbackOnPooledClose

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty rollbackOnPooledClose

roundRobinLoadBalance

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty roundRobinLoadBalance

runningCTS13

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty runningCTS13

secondsBeforeRetryMaster

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty secondsBeforeRetryMaster

serverTimezone

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty serverTimezone

sessionVariables

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty sessionVariables

slowQueryThresholdMillis

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty slowQueryThresholdMillis

slowQueryThresholdNanos

ConnectionProperties.LongConnectionProperty slowQueryThresholdNanos

socketFactoryClassName

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty socketFactoryClassName

socketTimeout

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty socketTimeout

strictFloatingPoint

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty strictFloatingPoint

strictUpdates

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty strictUpdates

overrideSupportsIntegrityEnhancementFacility

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty overrideSupportsIntegrityEnhancementFacility

tcpNoDelay

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty tcpNoDelay

tcpKeepAlive

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty tcpKeepAlive

tcpRcvBuf

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty tcpRcvBuf

tcpSndBuf

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty tcpSndBuf

tcpTrafficClass

com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty tcpTrafficClass

tinyInt1isBit

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty tinyInt1isBit

traceProtocol

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty traceProtocol

treatUtilDateAsTimestamp

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty treatUtilDateAsTimestamp

transformedBitIsBoolean

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty transformedBitIsBoolean

useCompression

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useCompression

useConfigs

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty useConfigs

useCursorFetch

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useCursorFetch

useDynamicCharsetInfo

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useDynamicCharsetInfo

useFastIntParsing

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useFastIntParsing

useFastDateParsing

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useFastDateParsing

useHostsInPrivileges

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useHostsInPrivileges

useInformationSchema

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useInformationSchema

useJDBCCompliantTimezoneShift

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useJDBCCompliantTimezoneShift

useLocalSessionState

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useLocalSessionState

useNanosForElapsedTime

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useNanosForElapsedTime

useOldAliasMetadataBehavior

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useOldAliasMetadataBehavior

useOldUTF8Behavior

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useOldUTF8Behavior

useOldUTF8BehaviorAsBoolean

boolean useOldUTF8BehaviorAsBoolean

useOnlyServerErrorMessages

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useOnlyServerErrorMessages

useReadAheadInput

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useReadAheadInput

useSqlStateCodes

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useSqlStateCodes

useSSL

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useSSL

useSSPSCompatibleTimezoneShift

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useSSPSCompatibleTimezoneShift

useStreamLengthsInPrepStmts

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useStreamLengthsInPrepStmts

useTimezone

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useTimezone

useUltraDevWorkAround

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useUltraDevWorkAround

useUnbufferedInput

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useUnbufferedInput

useUnicode

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useUnicode

useUnicodeAsBoolean

boolean useUnicodeAsBoolean

useUsageAdvisor

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useUsageAdvisor

useUsageAdvisorAsBoolean

boolean useUsageAdvisorAsBoolean

yearIsDateType

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty yearIsDateType

zeroDateTimeBehavior

com.mysql.jdbc.ConnectionProperties.StringConnectionProperty zeroDateTimeBehavior

useJvmCharsetConverters

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useJvmCharsetConverters

useGmtMillisForDatetimes

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty useGmtMillisForDatetimes

dumpMetadataOnColumnNotFound

com.mysql.jdbc.ConnectionProperties.BooleanConnectionProperty dumpMetadataOnColumnNotFound

Class com.mysql.jdbc.ConnectionProperties.LongConnectionProperty extends com.mysql.jdbc.ConnectionProperties.IntegerConnectionProperty implements Serializable

serialVersionUID: 6068572984340480895L

Class com.mysql.jdbc.DocsConnectionPropsHelper extends ConnectionProperties implements Serializable

Class com.mysql.jdbc.MysqlDataTruncation extends java.sql.DataTruncation implements Serializable

Serialized Fields

message

java.lang.String message

Class com.mysql.jdbc.NotImplemented extends java.sql.SQLException implements Serializable

Class com.mysql.jdbc.NotUpdatable extends java.sql.SQLException implements Serializable

serialVersionUID: 8084742846039782258L

Class com.mysql.jdbc.PacketTooBigException extends java.sql.SQLException implements Serializable


Package com.mysql.jdbc.exceptions

Class com.mysql.jdbc.exceptions.MySQLDataException extends MySQLNonTransientException implements Serializable

Class com.mysql.jdbc.exceptions.MySQLIntegrityConstraintViolationException extends MySQLNonTransientException implements Serializable

Class com.mysql.jdbc.exceptions.MySQLInvalidAuthorizationSpecException extends MySQLNonTransientException implements Serializable

Class com.mysql.jdbc.exceptions.MySQLNonTransientConnectionException extends MySQLNonTransientException implements Serializable

Class com.mysql.jdbc.exceptions.MySQLNonTransientException extends java.sql.SQLException implements Serializable

Class com.mysql.jdbc.exceptions.MySQLSyntaxErrorException extends MySQLNonTransientException implements Serializable

Class com.mysql.jdbc.exceptions.MySQLTimeoutException extends MySQLTransientException implements Serializable

Class com.mysql.jdbc.exceptions.MySQLTransactionRollbackException extends MySQLTransientException implements Serializable

Class com.mysql.jdbc.exceptions.MySQLTransientConnectionException extends MySQLTransientException implements Serializable

Class com.mysql.jdbc.exceptions.MySQLTransientException extends java.sql.SQLException implements Serializable


Package com.mysql.jdbc.integration.jboss

Class com.mysql.jdbc.integration.jboss.MysqlValidConnectionChecker extends java.lang.Object implements Serializable

serialVersionUID: 3258689922776119348L

Serialized Fields

pingMethod

java.lang.reflect.Method pingMethod

pingMethodWrapped

java.lang.reflect.Method pingMethodWrapped

Package com.mysql.jdbc.jdbc2.optional

Class com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource extends MysqlDataSource implements Serializable

Class com.mysql.jdbc.jdbc2.optional.MysqlDataSource extends ConnectionProperties implements Serializable

Serialized Fields

logWriter

java.io.PrintWriter logWriter
Log stream


databaseName

java.lang.String databaseName
Database Name


encoding

java.lang.String encoding
Character Encoding


hostName

java.lang.String hostName
Hostname


password

java.lang.String password
Password


profileSql

java.lang.String profileSql
The profileSql property


url

java.lang.String url
The JDBC URL


user

java.lang.String user
User name


explicitUrl

boolean explicitUrl
Should we construct the URL, or has it been set explicitly


port

int port
Port number

Class com.mysql.jdbc.jdbc2.optional.MysqlXADataSource extends MysqlDataSource implements Serializable


Package com.mysql.jdbc.util

Class com.mysql.jdbc.util.LRUCache extends java.util.LinkedHashMap implements Serializable

serialVersionUID: 1L

Serialized Fields

maxElements

int maxElements

Class com.mysql.jdbc.util.PropertiesDocGenerator extends ConnectionProperties implements Serializable


MySQL Connector/J size='-1'>5.0.8