Package oracle.pgx.config
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 TypeMethodDescriptiondata source id to use to connect to an RDBMS instanceJDBC URL pointing to an RDBMS instancemaximun number of rows prefetched during each round trip resultset-databaseschema to use when reading/writing RDBMS objectsusername 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
-