Uses of Interface
org.nuiton.topia.persistence.support.SqlFunction
Packages that use SqlFunction
Package
Description
-
Uses of SqlFunction in org.nuiton.topia.persistence.internal.support
Methods in org.nuiton.topia.persistence.internal.support with parameters of type SqlFunctionModifier and TypeMethodDescription<O> List<O>HibernateTopiaSqlSupport.findMultipleResult(String sql, SqlFunction<ResultSet, O> transformer) <O> List<O>HibernateTopiaSqlSupport.findMultipleResult(SqlFunction<Connection, PreparedStatement> preparer, SqlFunction<ResultSet, O> transformer) <O> OHibernateTopiaSqlSupport.findSingleResult(String sql, SqlFunction<ResultSet, O> transformer) <O> OHibernateTopiaSqlSupport.findSingleResult(SqlFunction<Connection, PreparedStatement> preparer, SqlFunction<ResultSet, O> transformer) -
Uses of SqlFunction in org.nuiton.topia.persistence.support
Methods in org.nuiton.topia.persistence.support with parameters of type SqlFunctionModifier and TypeMethodDescription<O> List<O>TopiaSqlSupport.findMultipleResult(String sql, SqlFunction<ResultSet, O> transformer) Runs the given SQL query and return all his result if there is some.<O> List<O>TopiaSqlSupport.findMultipleResult(SqlFunction<Connection, PreparedStatement> preparer, SqlFunction<ResultSet, O> transformer) Runs the given SQL query and return all his result if there is some.<O> OTopiaSqlSupport.findSingleResult(String sql, SqlFunction<ResultSet, O> transformer) Runs the given SQL query and return its first result if there is some.<O> OTopiaSqlSupport.findSingleResult(SqlFunction<Connection, PreparedStatement> preparer, SqlFunction<ResultSet, O> transformer) Runs the given SQL query and return its first result if there is some.static <T> TopiaSqlQuery<T>TopiaSqlQuery.wrap(String sqlQuery, SqlFunction<ResultSet, T> transformer) Let's you easily create aTopiaSqlQueryusing functional code-style.static <T> TopiaSqlQuery<T>TopiaSqlQuery.wrap(SqlFunction<Connection, PreparedStatement> preparer, SqlFunction<ResultSet, T> transformer) Let's you easily create aTopiaSqlQueryusing functional code-style.