JSP 解决SQLServer Unsupported method ResultSet.lastabsolute等方法的问题
JSP在数据库查询中,一般我们都是先获得查询的结果集,然后通过ResultSet.last (/rs.last) 将游标移到记录集末,再用ResultSet.getRow() 函数来获得最后一条记录的行号,由此来获得该记录集的数量。
这个方法在oracle 数据库中运行正常,但是换到MS SQL中就会报出
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Unsupported method: ResultSet.last
这样的错误。
解决办法是:
Statement变量要按照如下设置:
stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
/*但是使用这种方式时,对于如下程序:
try{
ResultSet rset=super.exeSqlQuery("select * from users");
rset.last();
ID=Long.parseLong("110"+(rset.getRow()+1));
}catch(Exception e)
{
System.out.print(e.toString());
}
会出现错误:Error reading data from static cursor cache
改用下面的方法就可以了!!
Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
但这样做是将游标移到最后一条记录的位置比较耗时,少量的记录不太明显。