Package com.baasbox.dao

Examples of com.baasbox.dao.CollectionDao.create()


    dao.delete(collectionName);
  }
 
  public static ODocument create(String collectionName) throws Throwable, InvalidCollectionException, InvalidModelException{
    CollectionDao dao = CollectionDao.getInstance();
    ODocument doc=dao.create(collectionName);
    return doc;
  }
 
  public static boolean exists(String collectionName) throws InvalidCollectionException, SqlInjectionException{
    CollectionDao dao = CollectionDao.getInstance();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.