Package org.apache.cayenne.datasource
Class DriverDataSource
java.lang.Object
org.apache.cayenne.datasource.DriverDataSource
- All Implemented Interfaces:
Wrapper
,CommonDataSource
,DataSource
A non-pooling DataSource implementation wrapping a JDBC driver.
-
Field Summary
-
Constructor Summary
ConstructorDescriptionDriverDataSource
(Driver driver, String connectionUrl, String userName, String password) Creates a DriverDataSource wrapping a given Driver. -
Method Summary
Modifier and TypeMethodDescriptionReturns a new database connection, using preconfigured data to locate the database and obtain a connection.getConnection
(String userName, String password) Returns a new database connection using provided credentials to login to the database.int
boolean
isWrapperFor
(Class<?> iface) void
setLoginTimeout
(int seconds) void
setLogWriter
(PrintWriter out) <T> T
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface javax.sql.CommonDataSource
createShardingKeyBuilder
Methods inherited from interface javax.sql.DataSource
createConnectionBuilder
-
Field Details
-
driver
-
connectionUrl
-
userName
-
password
-
-
Constructor Details
-
DriverDataSource
Creates a DriverDataSource wrapping a given Driver. If "driver" is null, DriverDataSource will consult DriverManager for a registered driver for the given URL. So when specifying null, a user must take care of registering the driver. "connectionUrl" on the other hand must NOT be null.- Since:
- 1.1
-
-
Method Details
-
getConnection
Returns a new database connection, using preconfigured data to locate the database and obtain a connection.- Specified by:
getConnection
in interfaceDataSource
- Throws:
SQLException
-
getConnection
Returns a new database connection using provided credentials to login to the database.- Specified by:
getConnection
in interfaceDataSource
- Throws:
SQLException
-
getLoginTimeout
- Specified by:
getLoginTimeout
in interfaceCommonDataSource
- Specified by:
getLoginTimeout
in interfaceDataSource
- Throws:
SQLException
-
setLoginTimeout
- Specified by:
setLoginTimeout
in interfaceCommonDataSource
- Specified by:
setLoginTimeout
in interfaceDataSource
- Throws:
SQLException
-
getLogWriter
- Specified by:
getLogWriter
in interfaceCommonDataSource
- Specified by:
getLogWriter
in interfaceDataSource
- Throws:
SQLException
-
setLogWriter
- Specified by:
setLogWriter
in interfaceCommonDataSource
- Specified by:
setLogWriter
in interfaceDataSource
- Throws:
SQLException
-
isWrapperFor
- Specified by:
isWrapperFor
in interfaceWrapper
- Throws:
SQLException
- Since:
- 3.0
-
unwrap
- Specified by:
unwrap
in interfaceWrapper
- Throws:
SQLException
- Since:
- 3.0
-
getParentLogger
- Specified by:
getParentLogger
in interfaceCommonDataSource
- Throws:
SQLFeatureNotSupportedException
- Since:
- 3.1
-