is the context for accessing datasource. More...
import "DatabaseContext.idl";
 
  
| Additional Inherited Members | |
|  Exported Interfaces inherited from XDatabaseContext | |
| interface | com::sun::star::container::XEnumerationAccess | 
| Enumeration on all registered data sources. | |
| interface | com::sun::star::container::XNameAccess | 
| NameAccess on all registered data sources. | |
| interface | com::sun::star::uno::XNamingService | 
| Interface for registering new datasources. | |
| interface | com::sun::star::container::XContainer | 
| Interface for registering listener to get notified when new datasources are created or removed. | |
| interface | com::sun::star::lang::XSingleServiceFactory | 
| Interface for creation of new datasources. | |
| interface | XDatabaseRegistrations | 
| allows to access and modify the configuration data for registered data source. | |
|  Public Member Functions inherited from XEnumerationAccess | |
| com::sun::star::container::XEnumeration | createEnumeration () | 
|  Public Member Functions inherited from XElementAccess | |
| type | getElementType () | 
| boolean | hasElements () | 
|  Public Member Functions inherited from XInterface | |
| any | queryInterface ([in] type aType) | 
| queries for a new interface to an existing UNO object. | |
| void | acquire () | 
| increases the reference counter by one. | |
| void | release () | 
| decreases the reference counter by one. | |
|  Public Member Functions inherited from XNameAccess | |
| any | getByName ([in] string aName) raises ( com::sun::star::container::NoSuchElementException, com::sun::star::lang::WrappedTargetException ) | 
| sequence< string > | getElementNames () | 
| boolean | hasByName ([in] string aName) | 
|  Public Member Functions inherited from XNamingService | |
| com::sun::star::uno::XInterface | getRegisteredObject ([in] string Name) raises (Exception) | 
| provides a previous registered object. | |
| void | registerObject ([in]string Name, [in]com::sun::star::uno::XInterface Object) raises (Exception) | 
| registers one object under the specified name. | |
| void | revokeObject ([in]string Name) raises (Exception) | 
| revokes the registration of an object. | |
|  Public Member Functions inherited from XContainer | |
| void | addContainerListener ([in] com::sun::star::container::XContainerListener xListener) | 
| adds the specified listener to receive events when elements are inserted or removed. | |
| void | removeContainerListener ([in] com::sun::star::container::XContainerListener xListener) | 
| removes the specified listener so it does not receive any events from this container. | |
|  Public Member Functions inherited from XSingleServiceFactory | |
| com::sun::star::uno::XInterface | createInstance () raises ( com::sun::star::uno::Exception ) | 
| Creates an instance of a service implementation. | |
| com::sun::star::uno::XInterface | createInstanceWithArguments ([in] sequence< any > aArguments) raises ( com::sun::star::uno::Exception ) | 
| Creates an instance of a service implementation initialized with some arguments. | |
|  Public Member Functions inherited from XDatabaseRegistrations | |
| boolean | hasRegisteredDatabase ([in] string Name) raises ( ::com::sun::star::lang::IllegalArgumentException ) | 
| determines whether a database is registered under the given name. | |
| sequence< string > | getRegistrationNames () | 
| returns the names of all registered databases | |
| string | getDatabaseLocation ([in] string Name) raises ( ::com::sun::star::lang::IllegalArgumentException , ::com::sun::star::container::NoSuchElementException ) | 
| returns the location of the database registered under the given name | |
| void | registerDatabaseLocation ([in] string Name, [in] string Location) raises ( ::com::sun::star::lang::IllegalArgumentException , ::com::sun::star::container::ElementExistException ) | 
| registers a database, given by location, under a given name | |
| void | revokeDatabaseLocation ([in] string Name) raises ( ::com::sun::star::lang::IllegalArgumentException , ::com::sun::star::container::NoSuchElementException , ::com::sun::star::lang::IllegalAccessException ) | 
| revokes the registration of a database, given by name | |
| void | changeDatabaseLocation ([in] string Name, [in] string NewLocation) raises ( ::com::sun::star::lang::IllegalArgumentException , ::com::sun::star::container::NoSuchElementException , ::com::sun::star::lang::IllegalAccessException ) | 
| changes the location of a given database registration | |
| boolean | isDatabaseRegistrationReadOnly ([in] string Name) raises ( ::com::sun::star::lang::IllegalArgumentException , ::com::sun::star::container::NoSuchElementException ) | 
| determines whether the registration data for a database given by name is read-only. | |
| void | addDatabaseRegistrationsListener ([in] XDatabaseRegistrationsListener Listener) | 
| registers a listener which is notified of changes in the registered databases | |
| void | removeDatabaseRegistrationsListener ([in] XDatabaseRegistrationsListener Listener) | 
| revokes a previously registered listener | |
is the context for accessing datasource.
A datasource contains information how to create a connection to a database, such as, which database driver should be used, for which user should a connection be established, etc. 
 The context stores datasources under a given name.