public interface JDBCMBean
Management and information for the embedded JDBC driver.
 
Key properties for registered MBean:
-  type=JDBC
-  system=runtime system identifier (see overview)
- 
Method SummaryModifier and TypeMethodDescriptionbooleanacceptsURL(String url) Does the driver accept the passed in JDBC URLGet the JDBC driver's implementation levelintReturn the JDBC driver's major version.intReturn the JDBC driver's minor version.booleanIs the JDBC driver compliant.
- 
Method Details- 
getDriverLevelString getDriverLevel()Get the JDBC driver's implementation level- Returns:
- the driver level
 
- 
getMajorVersionint getMajorVersion()Return the JDBC driver's major version.- Returns:
- major version
- See Also:
 
- 
getMinorVersionint getMinorVersion()Return the JDBC driver's minor version.- Returns:
- minor version
- See Also:
 
- 
isCompliantDriverboolean isCompliantDriver()Is the JDBC driver compliant.- Returns:
- compliance state
- See Also:
 
- 
acceptsURLDoes the driver accept the passed in JDBC URL- Parameters:
- url- JDBC URL to check.
- Returns:
- True if it supports it, false otherwise.
- Throws:
- SQLException- on error
- See Also:
 
 
-