public interface ConnectionProperties
ConnectionProperties
serves as a simple data container that allows
essential JDBC connection properties to be configured consistently,
independent of the actual DataSource
implementation.DataSourceFactory
Modifier and Type | Method and Description |
---|---|
void |
setDriverClass(java.lang.Class<? extends java.sql.Driver> driverClass)
Set the JDBC driver class to use to connect to the database.
|
void |
setPassword(java.lang.String password)
Set the password to use to connect to the database.
|
void |
setUrl(java.lang.String url)
Set the JDBC connection URL for the database.
|
void |
setUsername(java.lang.String username)
Set the username to use to connect to the database.
|
void setDriverClass(java.lang.Class<? extends java.sql.Driver> driverClass)
driverClass
- the jdbc driver classvoid setUrl(java.lang.String url)
url
- the connection urlvoid setUsername(java.lang.String username)
username
- the usernamevoid setPassword(java.lang.String password)
password
- the password