パッケージ org.nkjmlab.sorm4j
インタフェース OrmMapLazyReader
-
- 既知のサブインタフェースのリスト:
OrmConnection,OrmConnectionCommon,OrmTransaction,TypedOrmConnection<T>,TypedOrmTransaction<T>
public interface OrmMapLazyReader
-
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 LazyResultSet<Map<String,Object>>readMapLazy(String sql, Object... parameters)Returns anLazyResultSetinstance containing data from the execution of the provided parametrized SQL and convert it to Stream, List, and so on.LazyResultSet<Map<String,Object>>readMapLazy(ParameterizedSql sql)
-
-
-
メソッドの詳細
-
readMapLazy
LazyResultSet<Map<String,Object>> readMapLazy(ParameterizedSql sql)
- パラメータ:
sql-- 戻り値:
-
readMapLazy
LazyResultSet<Map<String,Object>> readMapLazy(String sql, Object... parameters)
Returns anLazyResultSetinstance containing data from the execution of the provided parametrized SQL and convert it to Stream, List, and so on.Types returned from the database will be converted to Java types in the map according with the correspondence defined in
ResultSetConverter.toSingleMap(SormOptions, ResultSet, List, List).Parameters will be set according with the correspondence defined in
SqlParametersSetter.setParameters(SormOptions, PreparedStatement, Object... )- パラメータ:
sql- with ordered parameter. The other type parameters (e.g. named parameter, list parameter) could not be used.parameters- are ordered parameter.
-
-