Package org.hibernate.sql

Examples of org.hibernate.sql.ForUpdateFragment


   * @param aliasedLockOptions lock options indexed by aliased table names.
   * @param keyColumnNames a map of key columns indexed by aliased table names.
   * @return the modified SQL string.
   */
  public String applyLocksToSql(String sql, LockOptions aliasedLockOptions, Map keyColumnNames) {
    return sql + new ForUpdateFragment( this, aliasedLockOptions, keyColumnNames ).toFragmentString();
  }
View Full Code Here


   * @param aliasedLockModes a map of lock modes indexed by aliased table names.
   * @param keyColumnNames a map of key columns indexed by aliased table names.
   * @return the modified SQL string.
   */
  public String applyLocksToSql(String sql, Map aliasedLockModes, Map keyColumnNames) {
    return sql + new ForUpdateFragment( this, aliasedLockModes, keyColumnNames ).toFragmentString();
  }
View Full Code Here

   * @param aliasedLockModes a map of lock modes indexed by aliased table names.
   * @param keyColumnNames a map of key columns indexed by aliased table names.
   * @return the modified SQL string.
   */
  public String applyLocksToSql(String sql, Map aliasedLockModes, Map keyColumnNames) {
    return sql + new ForUpdateFragment( this, aliasedLockModes, keyColumnNames ).toFragmentString();
  }
View Full Code Here

    return tableName;
  }

  @Override
  public String applyLocksToSql(String sql, LockOptions aliasedLockOptions, Map<String, String[]> keyColumnNames) {
    return sql + new ForUpdateFragment( this, aliasedLockOptions, keyColumnNames ).toFragmentString();
  }
View Full Code Here

   * @param aliasedLockOptions lock options indexed by aliased table names.
   * @param keyColumnNames a map of key columns indexed by aliased table names.
   * @return the modified SQL string.
   */
  public String applyLocksToSql(String sql, LockOptions aliasedLockOptions, Map<String, String[]> keyColumnNames) {
    return sql + new ForUpdateFragment( this, aliasedLockOptions, keyColumnNames ).toFragmentString();
  }
View Full Code Here

   * @param aliasedLockOptions lock options indexed by aliased table names.
   * @param keyColumnNames a map of key columns indexed by aliased table names.
   * @return the modified SQL string.
   */
  public String applyLocksToSql(String sql, LockOptions aliasedLockOptions, Map<String, String[]> keyColumnNames) {
    return sql + new ForUpdateFragment( this, aliasedLockOptions, keyColumnNames ).toFragmentString();
  }
View Full Code Here

   * @param aliasedLockModes a map of lock modes indexed by aliased table names.
   * @param keyColumnNames a map of key columns indexed by aliased table names.
   * @return the modified SQL string.
   */
  public String applyLocksToSql(String sql, Map aliasedLockModes, Map keyColumnNames) {
    return sql + new ForUpdateFragment( this, aliasedLockModes, keyColumnNames ).toFragmentString();
  }
View Full Code Here

   * @param aliasedLockModes a map of lock modes indexed by aliased table names.
   * @param keyColumnNames a map of key columns indexed by aliased table names.
   * @return the modified SQL string.
   */
  public String applyLocksToSql(String sql, Map aliasedLockModes, Map keyColumnNames) {
    return sql + new ForUpdateFragment( this, aliasedLockModes, keyColumnNames ).toFragmentString();
  }
View Full Code Here

   * @param aliasedLockModes a map of lock modes indexed by aliased table names.
   * @param keyColumnNames a map of key columns indexed by aliased table names.
   * @return the modified SQL string.
   */
  public String applyLocksToSql(String sql, Map aliasedLockModes, Map keyColumnNames) {
    return sql + new ForUpdateFragment( this, aliasedLockModes, keyColumnNames ).toFragmentString();
  }
View Full Code Here

  public String appendLockHint(LockMode mode, String tableName) {
    return tableName;
  }

  public String applyLocksToSql(String sql, LockOptions aliasedLockOptions, Map keyColumnNames) {
    return sql + new ForUpdateFragment( this, aliasedLockOptions, keyColumnNames ).toFragmentString();
  }
View Full Code Here

TOP

Related Classes of org.hibernate.sql.ForUpdateFragment

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.