public sun.jdbc.rowset.CachedRowSet dbrCachedRowSet(String rSql) throws SysExcpt
    {
        ResultSet lRSet = null;
        Statement lStat = null;
        try {
            lStat = gConn.createStatement();
            lRSet = lStat.executeQuery(rSql);
            sun.jdbc.rowset.CachedRowSet crs = new sun.jdbc.rowset.CachedRowSet();
            crs.populate(lRSet);
            return crs;
        }