Package org.dbxml.core.corba.db

Examples of org.dbxml.core.corba.db.DatabaseManager


      }
   }

   public void testGetDatabaseManager() {

      DatabaseManager dbman = null;
      try {

         dbman = db.getDatabaseManager();
        
         // call getName() on the dbmanager, should get "db" for the root collection
         assertTrue( dbman.getName().equals(INSTANCE_NAME) );

      } catch (Exception e) {
         fail( e.getMessage() );
      } finally {
         dbman.remove();
      }
   }
View Full Code Here

TOP

Related Classes of org.dbxml.core.corba.db.DatabaseManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.