Commit 555f63d3 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Fixed scrolling logic (JM-498).

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3242 b35dd754-fafc-0310-a699-88a17e54d16e
parent 666437a5
...@@ -277,7 +277,7 @@ public class DefaultGroupProvider implements GroupProvider { ...@@ -277,7 +277,7 @@ public class DefaultGroupProvider implements GroupProvider {
PreparedStatement pstmt = null; PreparedStatement pstmt = null;
try { try {
con = DbConnectionManager.getConnection(); con = DbConnectionManager.getConnection();
pstmt = con.prepareStatement(ALL_GROUPS); pstmt = DbConnectionManager.createScrollablePreparedStatement(con, ALL_GROUPS);
ResultSet rs = pstmt.executeQuery(); ResultSet rs = pstmt.executeQuery();
DbConnectionManager.scrollResultSet(rs, startIndex); DbConnectionManager.scrollResultSet(rs, startIndex);
int count = 0; int count = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment