| Line 667... |
Line 667... |
| 667 |
pkgInfoHash.Add "is_deprecated", True
|
667 |
pkgInfoHash.Add "is_deprecated", True
|
| 668 |
End If
|
668 |
End If
|
| 669 |
End If
|
669 |
End If
|
| 670 |
|
670 |
|
| 671 |
' Check if package is a NEW package - only one version in existence
|
671 |
' Check if package is a NEW package - only one version in existence
|
| - |
|
672 |
If pkgInfoHash.Item ("pkg_id") <> "" Then
|
| 672 |
Set rsTemp = OraDatabase.DbCreateDynaset( "select count(*) as count from package_versions pv where pkg_id = " & pkgInfoHash.Item ("pkg_id"), cint(0))
|
673 |
Set rsTemp = OraDatabase.DbCreateDynaset( "select count(*) as count from package_versions pv where pkg_id = " & pkgInfoHash.Item ("pkg_id"), cint(0))
|
| 673 |
pkgInfoHash.Add "pkg_count" , rsTemp("count")
|
674 |
pkgInfoHash.Add "pkg_count" , rsTemp("count")
|
| - |
|
675 |
End If
|
| 674 |
|
676 |
|
| 675 |
' Does this package have any dependencies
|
677 |
' Does this package have any dependencies
|
| 676 |
Set rsTemp = OraDatabase.DbCreateDynaset( "select count(*) as depCount from package_dependencies where pv_id = " & SSpv_id, cint(0))
|
678 |
Set rsTemp = OraDatabase.DbCreateDynaset( "select count(*) as depCount from package_dependencies where pv_id = " & SSpv_id, cint(0))
|
| 677 |
pkgInfoHash.Add "depCount" , rsTemp("depCount")
|
679 |
pkgInfoHash.Add "depCount" , rsTemp("depCount")
|
| 678 |
|
680 |
|