Uses of Interface
de.murmelmeister.library.database.ResultSetProcessor
Packages that use ResultSetProcessor
-
Uses of ResultSetProcessor in de.murmelmeister.library.database
Methods in de.murmelmeister.library.database with parameters of type ResultSetProcessorModifier and TypeMethodDescription<T> TDatabase.query(String sql, T fallback, ResultSetProcessor<T> processor, ParameterProcessor parameters) Executes the provided SQL query and processes the resultingResultSetusing the givenResultSetProcessor.<T> CompletableFuture<T> Database.queryAsync(String sql, T fallback, ResultSetProcessor<T> processor, ParameterProcessor parameters) Asynchronously executes a query with the provided SQL and parameters, processes the result set using the providedResultSetProcessor, and returns a CompletableFuture containing the result of typeT.<T> TDatabase.queryCallable(String sql, T fallback, ResultSetProcessor<T> processor, ParameterProcessor parameters) Executes a callable SQL query processes the resultingResultSetusing the givenResultSetProcessor.<T> CompletableFuture<T> Database.queryCallableAsync(String sql, T fallback, ResultSetProcessor<T> processor, ParameterProcessor parameters) Asynchronously executes a callable statement with the specified procedure name and parameters, processes the result set using the providedResultSetProcessor, and returns a CompletableFuture containing the result of typeT.<T> List<T> Database.queryList(String sql, ResultSetProcessor<T> processor, ParameterProcessor parameters) Executes a query with the provided SQL and parameters, processes the result set using the providedResultSetProcessor, and returns a list of results of typeT.<T> CompletableFuture<List<T>> Database.queryListAsync(String sql, ResultSetProcessor<T> processor, ParameterProcessor parameters) Asynchronously executes a query with the provided SQL and parameters, processes the result set using the providedResultSetProcessor, and returns a CompletableFuture containing a list of results of typeT.<T> List<T> Database.queryListCallable(String sql, ResultSetProcessor<T> processor, ParameterProcessor parameters) Executes the given SQL callable statement, processes the result set, and returns a list of objects.<T> CompletableFuture<List<T>> Database.queryListCallableAsync(String sql, ResultSetProcessor<T> processor, ParameterProcessor parameters) Executes a SQL query asynchronously and processes the returned result set into a list of objects.