I have not been able to find an example of how to use this anywhere. I am trying to do a simple SELECT statement with a parameterized query. I want to use the adArray data type. Here is an example
sql = "SELECT * FROM table WHERE id IN ?"
set objCmd = Server.CreateObject("ADODB.Command")
set objParam = objCmd.Createparameter("@id", 0x2000, 1, length, arrMyArray)
objCmd.Parameters.Append objParam
This throws a wrong type error. I was curious if anyone has ever gotten this to work or has any examples. That'd be great.
Thanks for the help in advance!