DatabaseManager.registerDatabase( db );
// execute command class
Command command = (Command)Class.forName( commandClass ).newInstance();
command.execute( table );
return true;
} catch (XMLDBException e) {
System.err.println( "XMLDB Exception with code " + e.errorCode );
if (table.get(VERBOSE).equals("true")) {
e.printStackTrace(System.err);