Example usage for org.hibernate.engine.query.spi HQLQueryPlan performExecuteUpdate

List of usage examples for org.hibernate.engine.query.spi HQLQueryPlan performExecuteUpdate

Introduction

In this page you can find the example usage for org.hibernate.engine.query.spi HQLQueryPlan performExecuteUpdate.

Prototype

public int performExecuteUpdate(QueryParameters queryParameters, SharedSessionContractImplementor session)
        throws HibernateException 

Source Link

Document

Coordinates the efforts to perform an execution across all the included query translators.

Usage

From source file:com.blazebit.persistence.integration.hibernate.Hibernate43Access.java

License:Apache License

@Override
public int performExecuteUpdate(HQLQueryPlan queryPlan, SessionImplementor sessionImplementor,
        QueryParameters queryParameters) {
    return queryPlan.performExecuteUpdate(queryParameters, sessionImplementor);
}