Good day:
I am having the most difficult time with what should be a simple task.
I want to fill a recordset using a stored procedure.
Dim rs as new adodb.recordset
rs.open "SP_GetTriplicate '10/30/2006 09:00:01', '10/31/2006 09:00:00', 3",cnn, adOpenKeyset, adLockOptimistic, adCmdStoredProc
do while not rs.eof
something
rs.movenext
loop
I have also tried the techniques with the ado command object and parameters to no avail.
My Stored procedure works in sql query analyzer.
Your assistance is greatly appreciated.
Thank you
I am having the most difficult time with what should be a simple task.
I want to fill a recordset using a stored procedure.
Dim rs as new adodb.recordset
rs.open "SP_GetTriplicate '10/30/2006 09:00:01', '10/31/2006 09:00:00', 3",cnn, adOpenKeyset, adLockOptimistic, adCmdStoredProc
do while not rs.eof
something
rs.movenext
loop
I have also tried the techniques with the ado command object and parameters to no avail.
My Stored procedure works in sql query analyzer.
Your assistance is greatly appreciated.
Thank you