* @throws SQLException if an exception occurs while reading the <tt>RowSet</tt>
*/
public Map getRecords(String id, int startIndex, int count) throws SQLException
{
Map page = null;
FlexSession session = FlexContext.getFlexSession();
if (session != null)
{
Object o = session.getAttribute(id);
if (o != null && o instanceof PageableRowSet)
{
PageableRowSet rs = (PageableRowSet) o;
page = rs.getRecords(startIndex, count);