Package jodd.db.oom.sqlgen.chunks

Examples of jodd.db.oom.sqlgen.chunks.MatchChunk


  public DbSqlBuilder matchIds(String tableRef, Object value) {
    return addChunk(new MatchChunk(tableRef, value, SqlChunk.COLS_ONLY_IDS));
  }

  public DbSqlBuilder matchIds(String tableRef, String objectRef) {
    return addChunk(new MatchChunk(tableRef, objectRef, SqlChunk.COLS_ONLY_IDS));
  }
View Full Code Here


  /**
   * Creates condition part of the query for all columns, including the null values.
   */
  public DbSqlBuilder matchAll(String tableRef, Object value) {
    return addChunk(new MatchChunk(tableRef, value, SqlChunk.COLS_ALL));
  }
View Full Code Here

  public DbSqlBuilder matchAll(String tableRef, Object value) {
    return addChunk(new MatchChunk(tableRef, value, SqlChunk.COLS_ALL));
  }

  public DbSqlBuilder matchAll(String tableRef, String objectRef) {
    return addChunk(new MatchChunk(tableRef, objectRef, SqlChunk.COLS_ALL));
  }
View Full Code Here

  public DbSqlBuilder matchAll(String tableRef, String objectRef) {
    return addChunk(new MatchChunk(tableRef, objectRef, SqlChunk.COLS_ALL));
  }

  public DbSqlBuilder match(String expression) {
    return addChunk(new MatchChunk(expression));
  }
View Full Code Here

TOP

Related Classes of jodd.db.oom.sqlgen.chunks.MatchChunk

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.