Class DelegatingDriver
- java.lang.Object
-
- com.vividsolutions.jump.datastore.jdbc.DelegatingDriver
-
- All Implemented Interfaces:
Driver
public class DelegatingDriver extends Object implements Driver
a jdbc driver wrapper to allow loading the driver with custon classloader from an arbitrary location during runtime. DatabaseManager.registerDriver() only registers drivers loaded with the system classloader so we trick it into accepting our driver by wrapping it into this one.
-
-
Constructor Summary
Constructors Constructor Description DelegatingDriver(Driver driver)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
acceptsURL(String url)
Connection
connect(String url, Properties info)
Driver
getDriver()
get wrappeeint
getMajorVersion()
int
getMinorVersion()
Logger
getParentLogger()
DriverPropertyInfo[]
getPropertyInfo(String url, Properties info)
boolean
jdbcCompliant()
String
toString()
-
-
-
Constructor Detail
-
DelegatingDriver
public DelegatingDriver(Driver driver)
-
-
Method Detail
-
connect
public Connection connect(String url, Properties info) throws SQLException
- Specified by:
connect
in interfaceDriver
- Throws:
SQLException
-
acceptsURL
public boolean acceptsURL(String url) throws SQLException
- Specified by:
acceptsURL
in interfaceDriver
- Throws:
SQLException
-
getPropertyInfo
public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) throws SQLException
- Specified by:
getPropertyInfo
in interfaceDriver
- Throws:
SQLException
-
getMajorVersion
public int getMajorVersion()
- Specified by:
getMajorVersion
in interfaceDriver
-
getMinorVersion
public int getMinorVersion()
- Specified by:
getMinorVersion
in interfaceDriver
-
jdbcCompliant
public boolean jdbcCompliant()
- Specified by:
jdbcCompliant
in interfaceDriver
-
getParentLogger
public Logger getParentLogger() throws SQLFeatureNotSupportedException
- Specified by:
getParentLogger
in interfaceDriver
- Throws:
SQLFeatureNotSupportedException
-
getDriver
public Driver getDriver()
get wrappee- Returns:
- the Driver
-
-