All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.engine.jdbc.spi.ResultSetReturn Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.engine.jdbc.spi;

import java.sql.CallableStatement;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;

/**
 * Contract for extracting ResultSets from Statements, executing Statements,
 * managing Statement/ResultSet resources, and logging statement calls.
 * 
 * TODO: This could eventually utilize the new Return interface.  It would be
 * great to have a common API shared.
 *
 * Generally the methods here dealing with CallableStatement are extremely limited, relying on the legacy
 *
 * 
 * @author Brett Meyer
 * @author Steve Ebersole
 */
public interface ResultSetReturn {
	
	/**
	 * Extract the ResultSet from the PreparedStatement.
	 * 

* If user passes {@link CallableStatement} reference, this method calls {@link #extract(CallableStatement)} * internally. Otherwise, generally speaking, {@link java.sql.PreparedStatement#executeQuery()} is called * * @param statement The PreparedStatement from which to extract the ResultSet * * @return The extracted ResultSet */ public ResultSet extract(PreparedStatement statement); /** * Extract the ResultSet from the CallableStatement. Note that this is the limited legacy form which delegates to * {@link org.hibernate.dialect.Dialect#getResultSet}. Better option is to integrate * {@link org.hibernate.procedure.ProcedureCall}-like hooks * * @param callableStatement The CallableStatement from which to extract the ResultSet * * @return The extracted ResultSet */ public ResultSet extract(CallableStatement callableStatement); /** * Performs the given SQL statement, expecting a ResultSet in return * * @param statement The JDBC Statement object to use * @param sql The SQL to execute * * @return The resulting ResultSet */ public ResultSet extract(Statement statement, String sql); /** * Execute the PreparedStatement return its first ResultSet, if any. If there is no ResultSet, returns {@code null} * * @param statement The PreparedStatement to execute * * @return The extracted ResultSet, or {@code null} */ public ResultSet execute(PreparedStatement statement); /** * Performs the given SQL statement, returning its first ResultSet, if any. If there is no ResultSet, * returns {@code null} * * @param statement The JDBC Statement object to use * @param sql The SQL to execute * * @return The extracted ResultSet, or {@code null} */ public ResultSet execute(Statement statement, String sql); /** * Execute the PreparedStatement, returning its "affected row count". * * @param statement The PreparedStatement to execute * * @return The {@link java.sql.PreparedStatement#executeUpdate()} result */ public int executeUpdate(PreparedStatement statement); /** * Execute the given SQL statement returning its "affected row count". * * @param statement The JDBC Statement object to use * @param sql The SQL to execute * * @return The {@link java.sql.PreparedStatement#executeUpdate(String)} result */ public int executeUpdate(Statement statement, String sql); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy