// Implementation methods
//-------------------------------------------------------------------------
public synchronized BTree createDatabase(String name) throws IOException, AlreadyClosedException {
if (manager == null) {
throw new AlreadyClosedException("JDBM PersistenceAdapter");
}
// try to reload an existing B+Tree
long recid = manager.getNamedObject(name);
BTree tree = null;