Subversion Repositories DevTools

Rev

Rev 5623 | Rev 5648 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5623 Rev 5639
Line 1553... Line 1553...
1553
            "  (SELECT pv.build_type, pv.last_pv_id, pv_id, pv.pkg_version, pv.v_ext, pv.MODIFIED_STAMP" &_
1553
            "  (SELECT pv.build_type, pv.last_pv_id, pv_id, pv.pkg_version, pv.v_ext, pv.MODIFIED_STAMP" &_
1554
            "  FROM release_manager.package_versions pv" &_
1554
            "  FROM release_manager.package_versions pv" &_
1555
            "    START WITH pv.pv_id = " + this_pv_id &_
1555
            "    START WITH pv.pv_id = " + this_pv_id &_
1556
            "    CONNECT BY nocycle prior pv.last_pv_id = pv.pv_id" &_
1556
            "    CONNECT BY nocycle prior pv.last_pv_id = pv.pv_id" &_
1557
            "  ) where build_type != 'Y' " &_
1557
            "  ) where build_type != 'Y' " &_
1558
            "    AND MODIFIED_STAMP >= TO_DATE('" & limitDate & "','DD/MM/YYYY')"
1558
            "    AND MODIFIED_STAMP >= TO_DATE('" & limitDate & "','DY DD-MON-YYYY')"
1559
 
1559
 
1560
   Set queryResult = OraDatabase.DbCreateDynaset( queryString, cint(0))
1560
   Set queryResult = OraDatabase.DbCreateDynaset( queryString, cint(0))
1561
 
1561
 
1562
   ' First entry - Base of the current ripple (may be myself)
1562
   ' First entry - Base of the current ripple (may be myself)
1563
   If ((NOT queryResult.BOF) AND (NOT queryResult.EOF)) Then
1563
   If ((NOT queryResult.BOF) AND (NOT queryResult.EOF)) Then