else
throw new dbXMLException("Collection '" + name + "' not found");
}
public CollectionClient createCollection(String path, Document configuration) throws dbXMLException {
Configuration cfg = new Configuration(configuration);
Collection c = col.createCollection(path, cfg);
if ( c != null )
return new CollectionClientImpl(client, c);
else
throw new dbXMLException("Couldn't create Collection '" + path + "'");