public interface PersonalDBManager
Connections and DataParameters to connect to the personal
database.PersonalDBService| Modifier and Type | Method and Description |
|---|---|
java.sql.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(java.lang.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(java.lang.String schema,
java.lang.String table)
Returns a
DataStoreParameters to connect to the personal database
through the DAL library. |
java.sql.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(java.lang.String schema, java.lang.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(java.lang.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