*/
driver = new org.apache.xindice.client.xmldb.xmlrpc.DatabaseImpl(this);
} else if (uri.startsWith(EMBED_URI)) {
driver = new org.apache.xindice.client.xmldb.embed.DatabaseImpl(this);
} else if (uri.startsWith(MANAGED_URI)) {
driver = new ManagedDatabaseImpl();
}
} catch (Exception e) {
log.error("Exception during creation of the Database", e);
throw new XMLDBException(ErrorCodes.INVALID_URI, uri, e);
}