Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Updateable query!

Reply
Thread Tools

Updateable query!

 
 
bol
Guest
Posts: n/a
 
      01-27-2005

I am trying to get our extranet site working, i.e. login page. It seemed
to work on my site and our internal intranet server but it's not working
on the main webserver which our out of house staff use to log in.

I keep on getting this message -

Microsoft JET database engine error '80004005'
Operation must use an updateble query.

It then points to line 34 in a .asp file which I have checked over and
over again.

I have changed all the permissions on the root folder which then
changes all the folders under it to write, read and execute to a group
called authenticated users (staff that have to log in) but I still get
this message. Does anybody know what else I can do apart from changing
the permissions settings?

Thanks in advance.

Bol



--
bol
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------

 
Reply With Quote
 
 
 
 
=?Utf-8?B?Q293Ym95IChHcmVnb3J5IEEuIEJlYW1lcikgLSBNVlA=?=
Guest
Posts: n/a
 
      01-27-2005
ASP or ASP.NET? Subtle word change, but a potential world of difference in
solution.

The issue here, as stated, is the type of cursor. By default, an ADO
connetion (ASP world) is a firehose cursor (fast-forward only). To conquer
the error, you change cursor types.

Not so fast, however, as 80004005 is, unfortunately, a rather generic error
and the messages thrown are not always correct. Thus, the first thing I would
look at, based on the "it works here, not here" scenario, is whether or not
the logged in user has access to the directory the .mdb file sits in. With
Access, the user using the database has to have write ability in the
directory to create a lock (.ldb) file.

Q: What user is using the application?
A: If you are using a windows login (to the web app - will pop up a login
box unless the network is set to avoid this), then you need to add the users
to a domain group and give that group rights to the directory. If you have
anonymous access on in the app, you are most likely running users under the
IUSR account, so give it read/write access to the .mdb file and directory.

---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************

"bol" wrote:

>
> I am trying to get our extranet site working, i.e. login page. It seemed
> to work on my site and our internal intranet server but it's not working
> on the main webserver which our out of house staff use to log in.
>
> I keep on getting this message -
>
> Microsoft JET database engine error '80004005'
> Operation must use an updateble query.
>
> It then points to line 34 in a .asp file which I have checked over and
> over again.
>
> I have changed all the permissions on the root folder which then
> changes all the folders under it to write, read and execute to a group
> called authenticated users (staff that have to log in) but I still get
> this message. Does anybody know what else I can do apart from changing
> the permissions settings?
>
> Thanks in advance.
>
> Bol
>
>
>
> --
> bol
> ------------------------------------------------------------------------
> Posted via http://www.codecomments.com
> ------------------------------------------------------------------------
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Operation must use an updateable query. Kevin Spencer ASP .Net 3 04-29-2004 01:17 PM
Re: Operation must use an updateable query. Alphonse Giambrone ASP .Net 3 04-29-2004 02:44 AM
Operation must use an updateable query Error!!! =?Utf-8?B?S2Vu?= ASP .Net 6 02-13-2004 03:45 PM
Operation must use an updateable query Error!!! =?Utf-8?B?S2Vu?= ASP .Net 0 02-13-2004 01:46 PM
Operation must use an updateable query error. abdul haleem ASP .Net 3 10-19-2003 05:53 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57