I created a website that uses MIcrosoft ActiveX Data Objects 2.1 library on my personal web server.
Now I want to put it onto the Production webserver. We don't have a test server yet, and our development environment is terrible, so I created a folder in the root directory and copyied my files into it.
Most of the stuff works, but the pages that need the ADO Reference do not work. I get this error:
ADODB.Command (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
This is the line causing the error:
cmd1.CommandType = adCmdStoredProc
I saw this line in my global.asa
<!--METADATA TYPE="TypeLib" NAME="Microsoft ActiveX Data Objects 2.1 Library" UUID="{00000201-0000-0010-8000-00AA006D2EA4}" VERSION="2.1"-->
Is there any way to modify my app so that it works on the production server. I think it's a reference problem to the ADO files
Thanks in advance
Now I want to put it onto the Production webserver. We don't have a test server yet, and our development environment is terrible, so I created a folder in the root directory and copyied my files into it.
Most of the stuff works, but the pages that need the ADO Reference do not work. I get this error:
ADODB.Command (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
This is the line causing the error:
cmd1.CommandType = adCmdStoredProc
I saw this line in my global.asa
<!--METADATA TYPE="TypeLib" NAME="Microsoft ActiveX Data Objects 2.1 Library" UUID="{00000201-0000-0010-8000-00AA006D2EA4}" VERSION="2.1"-->
Is there any way to modify my app so that it works on the production server. I think it's a reference problem to the ADO files
Thanks in advance