Uses of Interface
com.ibatis.db.sqlmap.RowHandler

Packages that use RowHandler
com.ibatis.db.sqlmap   
 

Uses of RowHandler in com.ibatis.db.sqlmap
 

Methods in com.ibatis.db.sqlmap with parameters of type RowHandler
 void MappedStatement.executeQueryWithRowHandler(java.sql.Connection conn, java.lang.Object parameterObject, RowHandler rowHandler)
          Runs a query with a custom object that gets a chance to deal with each row as it is processed.
 void SqlMap.executeQueryWithRowHandler(java.lang.String statementName, java.lang.Object parameterObject, RowHandler rowHandler)
          Runs a query with a custom object that gets a chance to deal with each row as it is processed.
private  java.util.List MappedStatement.runQueryForList(SqlStatement localSql, java.sql.Connection conn, java.lang.Object parameterObject, int skipResults, int maxResults, RowHandler rowHandler)