Package org.apache.commons.dbutils
Class DbUtils.DriverProxy
- java.lang.Object
-
- org.apache.commons.dbutils.DbUtils.DriverProxy
-
- All Implemented Interfaces:
java.sql.Driver
- Enclosing class:
- DbUtils
static final class DbUtils.DriverProxy extends java.lang.Object implements java.sql.Driver
SimpleDriver
proxy class that proxies a JDBC Driver loaded dynamically.- Since:
- 1.6
-
-
Field Summary
Fields Modifier and Type Field Description private java.sql.Driver
adapted
The adapted JDBC Driver loaded dynamically.private boolean
parentLoggerSupported
-
Constructor Summary
Constructors Constructor Description DriverProxy(java.sql.Driver adapted)
Creates a new JDBC Driver that adapts a JDBC Driver loaded dynamically.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
acceptsURL(java.lang.String url)
java.sql.Connection
connect(java.lang.String url, java.util.Properties info)
int
getMajorVersion()
int
getMinorVersion()
java.util.logging.Logger
getParentLogger()
Java 1.7 method.java.sql.DriverPropertyInfo[]
getPropertyInfo(java.lang.String url, java.util.Properties info)
boolean
jdbcCompliant()
-
-
-
Method Detail
-
acceptsURL
public boolean acceptsURL(java.lang.String url) throws java.sql.SQLException
- Specified by:
acceptsURL
in interfacejava.sql.Driver
- Throws:
java.sql.SQLException
-
connect
public java.sql.Connection connect(java.lang.String url, java.util.Properties info) throws java.sql.SQLException
- Specified by:
connect
in interfacejava.sql.Driver
- Throws:
java.sql.SQLException
-
getMajorVersion
public int getMajorVersion()
- Specified by:
getMajorVersion
in interfacejava.sql.Driver
-
getMinorVersion
public int getMinorVersion()
- Specified by:
getMinorVersion
in interfacejava.sql.Driver
-
getPropertyInfo
public java.sql.DriverPropertyInfo[] getPropertyInfo(java.lang.String url, java.util.Properties info) throws java.sql.SQLException
- Specified by:
getPropertyInfo
in interfacejava.sql.Driver
- Throws:
java.sql.SQLException
-
jdbcCompliant
public boolean jdbcCompliant()
- Specified by:
jdbcCompliant
in interfacejava.sql.Driver
-
getParentLogger
public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException
Java 1.7 method.- Specified by:
getParentLogger
in interfacejava.sql.Driver
- Throws:
java.sql.SQLFeatureNotSupportedException
-
-