tried to use fetchSize in "statement". But it gives following error "Method setfetchSize(int) not found in interface java.sql.Statement. stmt1.setfetchSize(25); " Same happens when try to setfetchSize(25) with resultSet Note: I am new to JSP and Tags. But liked the concept and now reading+playing more with it. When an expert from Apache team will be working on this issue, I will also try to understand (on my own) from the downloaded source code.
What version of JRE are you using? It looks like you need a newer one. Check the requirements for this tag library.
Method setFechSize() is defined on JDBC 2.0, which in turn is part of J2SE 1.3: http://java.sun.com/j2se/1.3/docs/api/java/sql/Statement.html#setFetchSize(int)