Package co.mewf.sqlwriter.mapping

Examples of co.mewf.sqlwriter.mapping.TableInfo


  private TableInfo table;
  private WhereBuilder where;
  private QualifierBuilder qualifiers = new QualifierBuilder(this);

  public UpdateBuilder(Class<?> entityClass) {
    this.table = new TableInfo(entityClass);
  }
View Full Code Here


   * entityClass becomes the current entity.
   *
   */
  public SelectBuilder from(Class<?> entityClass) {
    if (rootTable == null) {
      rootTable = new TableInfo(entityClass);
      currentTable = rootTable;
    } else {
      join(entityClass);
    }
    tables.add(currentTable);
View Full Code Here

  private final QualifierBuilder qualifier = new QualifierBuilder(this);
  private WhereBuilder where;

  public DeleteBuilder(Class<?> entityClass) {
    this.entityClass = entityClass;
    this.table = new TableInfo(entityClass);
  }
View Full Code Here

  private final TableInfo table;
  private final List<ColumnInfo> columns = new ArrayList<ColumnInfo>();

  public InsertBuilder(Class<?> entityClass) {
    this.table = new TableInfo(entityClass);
  }
View Full Code Here

TOP

Related Classes of co.mewf.sqlwriter.mapping.TableInfo

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.