Package | Description |
---|---|
net.ontopia.topicmaps.query.utils |
This package provides query utility classes.
|
ontopoly.model | |
ontopoly.utils |
Modifier and Type | Method and Description |
---|---|
List |
QueryWrapper.queryForList(String query,
RowMapperIF mapper)
EXPERIMENTAL: Runs the query, and calls the mapper for each row
in the query result.
|
List |
QueryWrapper.queryForList(String query,
RowMapperIF mapper,
Map params)
EXPERIMENTAL: Runs the query with the given parameters, and calls
the mapper for each row in the query result.
|
Object |
QueryWrapper.queryForObject(String query,
RowMapperIF mapper)
EXPERIMENTAL: Returns the mapping of the value in the first
column in the first row of the query result.
|
Object |
QueryWrapper.queryForObject(String query,
RowMapperIF mapper,
Map params)
EXPERIMENTAL: Returns the mapping of the value in the first
column in the first row of the query result.
|
Modifier and Type | Method and Description |
---|---|
List<T> |
QueryMapper.queryForList(String query,
RowMapperIF<T> mapper)
EXPERIMENTAL: Runs the query, and calls the mapper for each row
in the query result.
|
List<T> |
QueryMapper.queryForList(String query,
RowMapperIF<T> mapper,
Map<String,?> params)
EXPERIMENTAL: Runs the query with the given parameters, and calls
the mapper for each row in the query result.
|
T |
QueryMapper.queryForObject(String query,
RowMapperIF<T> mapper)
EXPERIMENTAL: Returns the value in the first column in the first
row of the query result.
|
T |
QueryMapper.queryForObject(String query,
RowMapperIF<T> mapper,
Map<String,?> params)
EXPERIMENTAL: Returns the mapping of the value in the first
column in the first row of the query result.
|
Modifier and Type | Method and Description |
---|---|
static RowMapperIF<Object> |
OntopolyModelUtils.getRowMapperOneColumn() |