Interface ConnectionSettings

All Known Implementing Classes:
AbstractWriteToJDBC, DeleteFromJDBC, JDBCConnector, JDBCOperator, ReadFromJDBC, UpdateInJDBC, WriteToJDBC

public interface ConnectionSettings
Basic JDBC Connection settings.
  • Method Summary

    Modifier and Type
    Method
    Description
    Retrieves the class name of the JDBC driver to use.
    Retrieves the password for connecting to the database.
    Retrieves the URL for connecting to the database.
    Retrieves the user name for connecting to the database.
  • Method Details

    • 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