|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of CloseableIterator in com.alexkasko.springjdbc.iterable |
---|
Fields in com.alexkasko.springjdbc.iterable with type parameters of type CloseableIterator | |
---|---|
protected List<CloseableIterator<T>> |
CloseableIterable.iters
|
Methods in com.alexkasko.springjdbc.iterable that return CloseableIterator | ||
---|---|---|
protected abstract CloseableIterator<T> |
CloseableIterable.closeableIterator()
Implementation should return new CloseableIterator instance |
|
CloseableIterator<T> |
CloseableIterable.iterator()
|
|
|
IterableJdbcTemplate.queryForIter(org.springframework.jdbc.core.PreparedStatementCreator psc,
org.springframework.jdbc.core.PreparedStatementSetter pss,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query using a prepared statement, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcOperations.queryForIter(org.springframework.jdbc.core.PreparedStatementCreator psc,
org.springframework.jdbc.core.PreparedStatementSetter pss,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query using a prepared statement, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcTemplate.queryForIter(org.springframework.jdbc.core.PreparedStatementCreator psc,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query using a prepared statement, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcOperations.queryForIter(org.springframework.jdbc.core.PreparedStatementCreator psc,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query using a prepared statement, mapping each row to a Java object via a RowMapper. |
|
CloseableIterator<Map<String,Object>> |
IterableJdbcTemplate.queryForIter(String sql)
Execute a query for a result iterator, given static SQL. |
|
CloseableIterator<Map<String,Object>> |
IterableJdbcOperations.queryForIter(String sql)
Execute a query for a result iterator, given static SQL. |
|
|
IterableJdbcTemplate.queryForIter(String sql,
Class<T> elementType)
Execute a query for a result шterator, given static SQL. |
|
|
IterableJdbcOperations.queryForIter(String sql,
Class<T> elementType)
Execute a query for a result шterator, given static SQL. |
|
|
IterableJdbcTemplate.queryForIter(String sql,
Class<T> elementType,
Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result iterator. |
|
|
IterableJdbcOperations.queryForIter(String sql,
Class<T> elementType,
Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result iterator. |
|
CloseableIterator<Map<String,Object>> |
IterableNamedParameterJdbcTemplate.queryForIter(String sql,
Map<String,?> paramMap)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list. |
|
CloseableIterator<Map<String,Object>> |
IterableNamedParameterJdbcOperations.queryForIter(String sql,
Map<String,?> paramMap)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list. |
|
|
IterableNamedParameterJdbcTemplate.queryForIter(String sql,
Map<String,?> paramMap,
Class<T> elementType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list. |
|
|
IterableNamedParameterJdbcOperations.queryForIter(String sql,
Map<String,?> paramMap,
Class<T> elementType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list. |
|
|
IterableNamedParameterJdbcTemplate.queryForIter(String sql,
Map<String,?> paramMap,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper. |
|
|
IterableNamedParameterJdbcOperations.queryForIter(String sql,
Map<String,?> paramMap,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper. |
|
CloseableIterator<Map<String,Object>> |
IterableJdbcTemplate.queryForIter(String sql,
Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result iterator. |
|
CloseableIterator<Map<String,Object>> |
IterableJdbcOperations.queryForIter(String sql,
Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result iterator. |
|
|
IterableJdbcTemplate.queryForIter(String sql,
Object[] args,
Class<T> elementType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result iterator. |
|
|
IterableJdbcOperations.queryForIter(String sql,
Object[] args,
Class<T> elementType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result iterator. |
|
CloseableIterator<Map<String,Object>> |
IterableJdbcTemplate.queryForIter(String sql,
Object[] args,
int[] argTypes)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result iterator. |
|
CloseableIterator<Map<String,Object>> |
IterableJdbcOperations.queryForIter(String sql,
Object[] args,
int[] argTypes)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result iterator. |
|
|
IterableJdbcTemplate.queryForIter(String sql,
Object[] args,
int[] argTypes,
Class<T> elementType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result iterator. |
|
|
IterableJdbcOperations.queryForIter(String sql,
Object[] args,
int[] argTypes,
Class<T> elementType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result iterator. |
|
|
IterableJdbcTemplate.queryForIter(String sql,
Object[] args,
int[] argTypes,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcOperations.queryForIter(String sql,
Object[] args,
int[] argTypes,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcTemplate.queryForIter(String sql,
Object[] args,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcOperations.queryForIter(String sql,
Object[] args,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcTemplate.queryForIter(String sql,
org.springframework.jdbc.core.PreparedStatementSetter pss,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a PreparedStatementSetter implementation that knows how to bind values to the query, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcOperations.queryForIter(String sql,
org.springframework.jdbc.core.PreparedStatementSetter pss,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a PreparedStatementSetter implementation that knows how to bind values to the query, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcTemplate.queryForIter(String sql,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Execute a query given static SQL, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcOperations.queryForIter(String sql,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Execute a query given static SQL, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcTemplate.queryForIter(String sql,
org.springframework.jdbc.core.RowMapper<T> rowMapper,
Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper. |
|
|
IterableJdbcOperations.queryForIter(String sql,
org.springframework.jdbc.core.RowMapper<T> rowMapper,
Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper. |
|
CloseableIterator<Map<String,Object>> |
IterableNamedParameterJdbcTemplate.queryForIter(String sql,
org.springframework.jdbc.core.namedparam.SqlParameterSource paramSource)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list. |
|
CloseableIterator<Map<String,Object>> |
IterableNamedParameterJdbcOperations.queryForIter(String sql,
org.springframework.jdbc.core.namedparam.SqlParameterSource paramSource)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list. |
|
|
IterableNamedParameterJdbcTemplate.queryForIter(String sql,
org.springframework.jdbc.core.namedparam.SqlParameterSource paramSource,
Class<T> elementType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list. |
|
|
IterableNamedParameterJdbcOperations.queryForIter(String sql,
org.springframework.jdbc.core.namedparam.SqlParameterSource paramSource,
Class<T> elementType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list. |
|
|
IterableNamedParameterJdbcTemplate.queryForIter(String sql,
org.springframework.jdbc.core.namedparam.SqlParameterSource paramSource,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper. |
|
|
IterableNamedParameterJdbcOperations.queryForIter(String sql,
org.springframework.jdbc.core.namedparam.SqlParameterSource paramSource,
org.springframework.jdbc.core.RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper. |
Methods in com.alexkasko.springjdbc.iterable with parameters of type CloseableIterator | |
---|---|
static void |
IterableJdbcTemplate.closeQuetly(CloseableIterator<?> iter)
Deprecated. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |