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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDataSourceId()
data source id to use to connect to an RDBMS instancejava.lang.String
getJdbcUrl()
JDBC URL pointing to an RDBMS instancejava.lang.Integer
getMaxPrefetchedRows()
maximun number of rows prefetched during each round trip resultset-databasejava.lang.String
getSchema()
schema to use when reading/writing RDBMS objectsjava.lang.String
getUsername()
username to use when connecting to an RDBMS instance
-
-
-
Method Detail
-
getJdbcUrl
java.lang.String getJdbcUrl()
JDBC URL pointing to an RDBMS instance- Returns:
- the JDBC URL
-
getUsername
java.lang.String getUsername()
username to use when connecting to an RDBMS instance- Returns:
- the username
-
getMaxPrefetchedRows
java.lang.Integer getMaxPrefetchedRows()
maximun number of rows prefetched during each round trip resultset-database- Returns:
- the maximum number of prefetched rows
-
getDataSourceId
java.lang.String getDataSourceId()
data source id to use to connect to an RDBMS instance- Returns:
- the data source id
-
getSchema
java.lang.String getSchema()
schema to use when reading/writing RDBMS objects- Returns:
- the schema
-
-