Hi Any reason why there are only two select() methods in org.apache.ibatis.session:
void select(String statement, Object parameter, ResultHandler handler); void select(String statement, Object parameter, RowBounds rowBounds, ResultHandler handler); I would have expected to see this for symmetry with the others: void select(String statement, ResultHandler handler); Or should I just use a null in place of the object: sqlSession.select(statement, null, handler); Cheers François --------------------------------------------------------------------- To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org For additional commands, e-mail: user-java-h...@ibatis.apache.org