Package org.hibernate.reactive.bulk
Interface StatementsWithParameters
-
public interface StatementsWithParametersA list of SQL statements to be executed as a single logical unit. May include both DDL and DML statements.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.util.concurrent.CompletionStage<java.lang.Integer>execute(ReactiveQueryExecutor session, org.hibernate.engine.spi.QueryParameters queryParameters)Execute the statements using the query parametersorg.hibernate.param.ParameterSpecification[][]getParameterSpecifications()The parameters of the corresponding SQL statements.java.lang.String[]getSqlStatements()The SQL statements to be executed.
-
-
-
Method Detail
-
getSqlStatements
java.lang.String[] getSqlStatements()
The SQL statements to be executed.
-
getParameterSpecifications
org.hibernate.param.ParameterSpecification[][] getParameterSpecifications()
The parameters of the corresponding SQL statements.
-
execute
default java.util.concurrent.CompletionStage<java.lang.Integer> execute(ReactiveQueryExecutor session, org.hibernate.engine.spi.QueryParameters queryParameters)
Execute the statements using the query parameters
-
-