dbConfig |
create the database configuration instance for the underlying database
- (BDBDatabaseConfig *) dbConfig;
initWithDatabase |
Initialize and hand-off the underlying db to be used
See Also:
- initWithDatabaseName:forServer:
- initWithDatabaseName: (NSString *) aDatabaseName forServer: (FTServerImpl *) aServer;
aDatabaseName
- fully qualified database name
This method neither opens nor creates the underlying
database. For this purpose or
may be called.
initWithDatabaseName:forServer: |
Initialize and hand-off the underlying db to be used
See Also:
- initWithDatabase
- initWithDatabaseName: (NSString *) aDatabaseName forServer: (FTServerImpl *) aServer;
aDatabaseName
- fully qualified database name
This method neither opens nor creates the underlying
database. For this purpose or
may be called.
lookup |
lookup the given object.
See Also:
- lookupObject:
- (id <FTId>) lookupObject: (id) toLookup;
lookupObject: |
lookup the given object.
See Also:
- lookup
- (id <FTId>) lookupObject: (id) toLookup;
mapObject: |
maps a string object to the corresponding identifier
- (id <FTId>) mapObject: (NSString *) strObject;
strObject
- to map. May not equal nil or be empty.
mountDatabase |
mounts the underlying database
- mountDatabase;
setupDatabase |
creates the database
- setupDatabase;
The caller of this method is responsible for potential thread synchronization
unmountDatabase |
closes the database
- unmountDatabase;
(Last Updated August 27, 2006)