Methods in net.ontopia.topicmaps.query.utils with parameters of type RowMapperIF |
java.util.List |
QueryWrapper.queryForList(java.lang.String query,
RowMapperIF mapper)
EXPERIMENTAL: Runs the query, and calls the mapper for each row
in the query result. |
java.util.List |
QueryWrapper.queryForList(java.lang.String query,
RowMapperIF mapper,
java.util.Map params)
EXPERIMENTAL: Runs the query with the given parameters, and calls
the mapper for each row in the query result. |
java.lang.Object |
QueryWrapper.queryForObject(java.lang.String query,
RowMapperIF mapper)
EXPERIMENTAL: Returns the mapping of the value in the first
column in the first row of the query result. |
java.lang.Object |
QueryWrapper.queryForObject(java.lang.String query,
RowMapperIF mapper,
java.util.Map params)
EXPERIMENTAL: Returns the mapping of the value in the first
column in the first row of the query result. |