Interface DbConnectionConfig

All Known Implementing Classes:
AbstractPartitionedGraphConfig, AbstractRdbmsEntityProviderConfig, AbstractTwoTablesRdbmsGraphConfig, PartitionedGraphConfig, RdbmsEntityProviderConfig, TwoTablesRdbmsGraphConfig

public interface DbConnectionConfig
common interface for all configurations in loadable entities (graph/table) that include DB connection fields
  • Method Summary

    Modifier and Type
    Method
    Description
    data source id to use to connect to an RDBMS instance
    JDBC URL pointing to an RDBMS instance
    maximun number of rows prefetched during each round trip resultset-database
    schema to use when reading/writing RDBMS objects
    username to use when connecting to an RDBMS instance
  • Method Details

    • getJdbcUrl

      String getJdbcUrl()
      JDBC URL pointing to an RDBMS instance
      Returns:
      the JDBC URL
    • getUsername

      String getUsername()
      username to use when connecting to an RDBMS instance
      Returns:
      the username
    • getMaxPrefetchedRows

      Integer getMaxPrefetchedRows()
      maximun number of rows prefetched during each round trip resultset-database
      Returns:
      the maximum number of prefetched rows
    • getDataSourceId

      String getDataSourceId()
      data source id to use to connect to an RDBMS instance
      Returns:
      the data source id
    • getSchema

      String getSchema()
      schema to use when reading/writing RDBMS objects
      Returns:
      the schema