I'm tring to execute a Stored Procedure through VB/ADO. I keep getting this error:
Error 3265
Item cannot be found in the collection corresponding to the required name or ordinal.
On the second to the last line in this sample.
Any suggestions???
What doesn't kill you makes you stronger.
Error 3265
Item cannot be found in the collection corresponding to the required name or ordinal.
On the second to the last line in this sample.
Code:
sqlCommand.CommandText = "sp_ImportXML"
sqlCommand.CommandType = adCmdStoredProc
sqlCommand.Parameters.Refresh
sqlCommand.Parameters.Item(1).Value = objXMLDOM.xml
sqlCommand.Execute
Any suggestions???
What doesn't kill you makes you stronger.