这个包 我不清楚估计你缺少什么配置文件 或者   什么配置文件写的不对!

解决方案 »

  1.   

    看这样操作,能否行:
          Statement stmt = Connection.createStatement();
          ResultSet rs = stmt.executeQuery(sqlString);
          CachedRowSet rowset = new CachedRowSetImpl();
          rowset.release();
          rowset.populate(rs);
    不过这好像是脱了裤子放屁,原本这样的:
          CachedRowSet rowset = new CachedRowSetImpl();
          rowset.release();
          rowset.setCommand(sqlString);
          rowset.execute(Connection);