Uses of Interface
org.axonframework.common.jdbc.JdbcUtils.SqlResultConverter
Packages that use JdbcUtils.SqlResultConverter
-
Uses of JdbcUtils.SqlResultConverter in org.axonframework.common.jdbc
Methods in org.axonframework.common.jdbc that return JdbcUtils.SqlResultConverterModifier and TypeMethodDescriptionstatic <R> JdbcUtils.SqlResultConverter<List<R>> JdbcUtils.listResults(JdbcUtils.SqlResultConverter<R> singleResultConverter) Create a converter that produces a List of results of typeRfrom a converter that produces a single result.Methods in org.axonframework.common.jdbc with parameters of type JdbcUtils.SqlResultConverterModifier and TypeMethodDescriptionstatic <R> RJdbcUtils.executeQuery(Connection connection, JdbcUtils.SqlFunction sqlFunction, JdbcUtils.SqlResultConverter<R> sqlResultConverter, Function<SQLException, RuntimeException> errorHandler) Execute the query given by thesqlFunction.static <R> RJdbcUtils.executeQuery(Connection connection, JdbcUtils.SqlFunction sqlFunction, JdbcUtils.SqlResultConverter<R> sqlResultConverter, Function<SQLException, RuntimeException> errorHandler, boolean closeConnection) Execute the query given by thesqlFunction.static <R> JdbcUtils.SqlResultConverter<List<R>> JdbcUtils.listResults(JdbcUtils.SqlResultConverter<R> singleResultConverter) Create a converter that produces a List of results of typeRfrom a converter that produces a single result.