T
the other john
Here's my project info first...
DB: Access 2000
server: IIS 2003
Here is the error I'm getting...
ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.
/admin/website_specs_step1_process.asp, line 166
Here is where the error is occuring...
Dim rsClient, ClientSQL
Set rsClient = Server.CreateObject("ADODB.Recordset")
ClientSQL = "SELECT * FROM tbl_clients WHERE fld_client_Email=" &
Request.Form("Email") & ";"
rsClient.Open ClientSQL, objConn 'LINE 166
I usually get this error when I forget to reference the ado type
library dll with this...
<!-- METADATA TYPE="typelib" file="c:\Program Files\Common
Files\System\ado\msado15.dll" -->
These are the steps I have take to no avail...
1). I have double checked with the server administrator to verify the
dll is actually where it is supposed to be.
2). I have checked and rechecked to be sure I am referencing my
connection file correctly (e.g. the "objConn")
3). I have checked to be certain the DB table and fields are correct.
4). I have tried replacing the ado constants with literals (if I refer
to these correctly). I specified all the options instead of allowing
the defaults to kick in as well (e.g. connection, cursor, locktype,
option) and still no difference.
I don't know what else to do at this point. Any suggestions?
Thank you!!!
John
DB: Access 2000
server: IIS 2003
Here is the error I'm getting...
ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.
/admin/website_specs_step1_process.asp, line 166
Here is where the error is occuring...
Dim rsClient, ClientSQL
Set rsClient = Server.CreateObject("ADODB.Recordset")
ClientSQL = "SELECT * FROM tbl_clients WHERE fld_client_Email=" &
Request.Form("Email") & ";"
rsClient.Open ClientSQL, objConn 'LINE 166
I usually get this error when I forget to reference the ado type
library dll with this...
<!-- METADATA TYPE="typelib" file="c:\Program Files\Common
Files\System\ado\msado15.dll" -->
These are the steps I have take to no avail...
1). I have double checked with the server administrator to verify the
dll is actually where it is supposed to be.
2). I have checked and rechecked to be sure I am referencing my
connection file correctly (e.g. the "objConn")
3). I have checked to be certain the DB table and fields are correct.
4). I have tried replacing the ado constants with literals (if I refer
to these correctly). I specified all the options instead of allowing
the defaults to kick in as well (e.g. connection, cursor, locktype,
option) and still no difference.
I don't know what else to do at this point. Any suggestions?
Thank you!!!
John