给用户提供一个可选择分页显示的选项,如果用户不想分页显示则完全显示,否则分页显示。
1.定义一个分页数全局常量,即每页显示的数据条数。
private final static int SKIP = 100;
2.定义一个确定某个分页条数的全局变量,即该显示页的当前显示数据条数。
private static int cur = 0;
3.定义一个ResultSet全局变量,以便多次使用
private static java.sql.Result rs = null;
4.打开一个数据库连接[/pre]
Class.forName( sqlDriver );
java.sql.Connection conn = DriverManager.getConnection( URL, (String)userName,(String)Passwd)
Statement stmt = conn.createStatement();
String searchSql = "......";
rs = stmt.executeQuery(searchSql);
5.获取查询结果集数据(一般是在查询按钮的响应事件函数里)
......
nextButton.setEnable(true);
cur = 0;
while( cur < SKIP && rs.next() ){
cur ++ ;
.....(获取rs中的记录,存入java程序的变量中)
}
6.显示下一页的结果集数据(一般是在下页按钮的响应事件函数里)
if( rs.getRow() == 0 )
{
nextButton.setEnable(false);
closeConnection(); --rs的cursor已经到了最后,结果集显示完毕,关闭此次的连接
}
cur = 0;
if(rs != null && rs.getRow() > 0)
{
....将上页显示的内容清除
while(cur < SKIP && rs.next() )
{
cur ++ ;
.....(获取结果集中的记录,存入java程序的变量中)
}
}
缺陷:
此方法根据2.0版本的JDBC(具体和JDBC驱动程序的提供商有关)之前的ResultSet类产生,因为ResultSet无法将已经显示的结果集回滚,所以此法只能按照ResultSet类的定义,从左往右、从前往后的浏览数据结果。无法动态显示指定任意前后的结果集数据。
本文地址:http://com.8s8s.com/it/it10541.htm