Hi,
I would like to run a stored procedure that returns a recordset object....
If I run the command
on the server, it runturns what I want but if I call it as above in ASP I get an error when I try to loop the recordset:
Operation is not allowed when the object is closed..
anyone know the answer to this? any suggestion what I might want to try if I cannot do it this way.
I would like to run a stored procedure that returns a recordset object....
Code:
rs.Open "Exec _sp_AMS_Monthly_Internal_CSR " & CDbl(request.form("exchangeRate")) & ",'" & CDate(fromdate) & "','" & CDate(todate) & "'",dbConn
Code:
EXEC _sp_Update_Reporting_Period '05/05/05', '05/09/05'
Operation is not allowed when the object is closed..
anyone know the answer to this? any suggestion what I might want to try if I cannot do it this way.