all groups > asp.net webservices > november 2003 >
You're in the

asp.net webservices

group:

ASP


ASP David Smotherman
11/29/2003 5:31:01 AM
asp.net webservices:
Since IE 6.0 came out, whenever anyone tries to order from my website needfultoys.com they get the following message
Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.

/needfultoys_secure/Shipping.asp, line 162
Re: ASP Jos
11/29/2003 8:12:50 PM
[quoted text, click to view]

This problem probably has nothing to do with ASP.
It is usually caused by incorrect security settings for the database
file (mdb file).

Make sure that the user IUSR_MACHINENAME (replace
MACHINENAME with the real name of the server) has write access
to the database.

--

Jos

Re: ASP Bhaskardeep Khaund
11/30/2003 1:46:57 AM
Hi,

This is an error for using not using the appropriate cursor type. Make =
sure you have used the proper cursor type when you are opening the =
recordset. Its a simple problem and you can change the recordset by =
writing a single line like-

Set objRs =3D Server.CreateObject("ADODB.Recordset")
objRs.CursorType =3D adOpenStatic (you need to change this to =
appropriate cursor type)
objRs.Open sql, objConn

Read about the different cursor types in this site:-=20
http://www.devguru.com/Technologies/ado/quickref/recordset_cursortype.htm=
l


Hope this helps,

Regards
AddThis Social Bookmark Button