-
- All Known Implementing Classes:
AbstractWriteToJDBC
,DeleteFromJDBC
,JDBCConnector
,JDBCOperator
,ReadFromJDBC
,UpdateInJDBC
,WriteToJDBC
public interface ConnectionSettings
Basic JDBC Connection settings.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDriverName()
Retrieves the class name of the JDBC driver to use.String
getPassword()
Retrieves the password for connecting to the database.String
getUrl()
Retrieves the URL for connecting to the database.String
getUser()
Retrieves the user name for connecting to the database.
-
-
-
Method Detail
-
getDriverName
String getDriverName()
Retrieves the class name of the JDBC driver to use.- Returns:
- the class name of the JDBC driver to use
-
getPassword
String getPassword()
Retrieves the password for connecting to the database.- Returns:
- the password for connecting to the database
-
getUrl
String getUrl()
Retrieves the URL for connecting to the database.- Returns:
- the URL for connecting to the database
-
getUser
String getUser()
Retrieves the user name for connecting to the database.- Returns:
- the user name for connecting to the database
-
-