I am maintaining a system that runs Classic ASP, I was just wondering is there any easy way to adapt this function so I can use parameterized queries?
Function GetRSArray(strSQL)
Set objRS = oConn.Execute(strSQL)
If Not objRS.EOF Then
oFarrRS = objRS.GetRows()
GetRSArray = oFarrRS
Else
GetRSArray = ""
End if
Set objRS = Nothing
End Function