Package org.boxsql.persistenceEngine

Examples of org.boxsql.persistenceEngine.SQLEngine


   * @param clazz
   *            Class to bind object to.
   * @return List
   */
  public final List getList(final Class className) {
    SQLEngine sql = new SQLEngine();
    return pe.getList(sql.getSelect(className), className);
  }
View Full Code Here


   *           Object to persisti
   *
   * @return int
   */
  public final int executeAutoUpdate(final Object obj) {
    SQLEngine sql = new SQLEngine();
    return pe.update(sql.getUpdate(obj));
  }
View Full Code Here

TOP

Related Classes of org.boxsql.persistenceEngine.SQLEngine

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.