Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form

Status
Not open for further replies.

tjm77

Programmer
Oct 2, 2000
15
US
I have an online form that should write to a Access table, but I keep getting the following error:

The application is using arguments that are of the wrong type, are out of acceptable range, or are in conflict with one another.

/requests/request.asp, line 20

Line 20 looks like this:

oRSs.open "Table1", "DSN=Requests", adOpenDynamic, adLockPessimistic

Need some help!
 
You need to include more information. Most likely this is coming from your SQL select or insert statement. Or your did not define adOpenDynamic and adLockPessimistic.

Hope this helps
 
If you don't have adovbs.inc setup as an include it will give you this error each time (as adOpenDynamic and adLockPessimistic have not been defined).

Also check your SQL statement is correct in it's references to database fields.
sjf
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top