matthewking
Programmer
Hi,
I've noticed that you can only retrieve ado parameters with direction adParamOutput when executing the command object e.g.
objCommand.Parameters.Append .CreateParameter("@Return", adInteger, adParamOutput)
objCommand.Execute
Response.Write(objCommand.Parameters("@Return"
.Value)
if you do Set objRecordset = objCommand.Execute
you can no longer read the return values..Anyone know why? and/or any alternatives or clean ways around this problem..
thanks
matt.
I've noticed that you can only retrieve ado parameters with direction adParamOutput when executing the command object e.g.
objCommand.Parameters.Append .CreateParameter("@Return", adInteger, adParamOutput)
objCommand.Execute
Response.Write(objCommand.Parameters("@Return"
if you do Set objRecordset = objCommand.Execute
you can no longer read the return values..Anyone know why? and/or any alternatives or clean ways around this problem..
thanks
matt.