Interface ConnectionProperties
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.- Since:
- 3.0
- Author:
- Keith Donald, Sam Brannen
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionvoidsetDriverClass(Class<? extends Driver> driverClass) Set the JDBC driver class to use to connect to the database.voidsetPassword(String password) Set the password to use to connect to the database.voidSet the JDBC connection URL for the database.voidsetUsername(String username) Set the username to use to connect to the database.
- 
Method Details- 
setDriverClass
- 
setUrlSet the JDBC connection URL for the database.- Parameters:
- url- the connection url
 
- 
setUsernameSet the username to use to connect to the database.- Parameters:
- username- the username
 
- 
setPasswordSet the password to use to connect to the database.- Parameters:
- password- the password
 
 
-