public interface JDBCMBean
Key properties for registered MBean:
type=JDBC
system=
runtime system identifier (see overview)
Modifier and Type | Method and Description |
---|---|
boolean |
acceptsURL(java.lang.String url)
Does the driver accept the passed in JDBC URL
|
java.lang.String |
getDriverLevel()
Get the JDBC driver's implementation level
|
int |
getMajorVersion()
Return the JDBC driver's major version.
|
int |
getMinorVersion()
Return the JDBC driver's minor version.
|
boolean |
isCompliantDriver()
Is the JDBC driver compliant.
|
java.lang.String getDriverLevel()
int getMajorVersion()
Driver.getMajorVersion()
int getMinorVersion()
Driver.getMinorVersion()
boolean isCompliantDriver()
Driver.jdbcCompliant()
boolean acceptsURL(java.lang.String url)
url
- JDBC URL to check.Driver.acceptsURL(String)