Under the ADO Command Object, what collection is responsible for input to stored procedures?

Showing Answers 1 - 3 of 3 Answers

saandah

  • Jan 27th, 2008
 

Parameters collection

Example:
Dim rsCMD As ADODB.Command


rsCMD.Parameters(1).Name = "EmpNo"
rsCMD.Parameters(1).Type = adInteger
rsCMD.Parameters(1).Value = "U1001"

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions