public interface PersonalDBManager
Connection
s and DataParameters
to connect to the personal
database.PersonalDBService
Modifier and Type | Method and Description |
---|---|
Connection |
getConnection()
Returns a
Connection the personal database. |
DataServerExplorerParameters |
getDataServerExplorerParameters()
Returns a
DataServerExplorerParameters to connect to the personal
database
through the DAL library. |
DataServerExplorerParameters |
getDataServerExplorerParameters(String schema)
Returns a
DataServerExplorerParameters to connect to the personal
database
through the DAL library. |
DataStoreParameters |
getDataStoreParameters()
Returns a
DataStoreParameters to connect to the personal database
through the DAL library. |
DataStoreParameters |
getDataStoreParameters(String schema,
String table)
Returns a
DataStoreParameters to connect to the personal database
through the DAL library. |
Connection getConnection() throws PersonalDBException
Connection
the personal database.PersonalDBException
- if there is an error getting the connectionDataStoreParameters getDataStoreParameters() throws PersonalDBException
DataStoreParameters
to connect to the personal database
through the DAL library.PersonalDBException
- if there is an error creating the parametersDataStoreParameters getDataStoreParameters(String schema, String table) throws PersonalDBException
DataStoreParameters
to connect to the personal database
through the DAL library.schema
- the schema of the table to load data fromtable
- the name of the table to load data fromPersonalDBException
- if there is an error creating the parametersDataServerExplorerParameters getDataServerExplorerParameters() throws PersonalDBException
DataServerExplorerParameters
to connect to the personal
database
through the DAL library.PersonalDBException
- if there is an error creating the parametersDataServerExplorerParameters getDataServerExplorerParameters(String schema) throws PersonalDBException
DataServerExplorerParameters
to connect to the personal
database
through the DAL library.schema
- the schema of the database to connect toPersonalDBException
- if there is an error creating the parameters