Ask a Question related to ASP, Design and Development.
-
jason #1
Insert error :: must be updateable?
I am picking up the following error message which is strange as it has only
started happening since I have transferred servers:
Microsoft JET Database Engine error '80004005' Operation must use an
updateable query./admin/news1.asp, line 59
sql1 = "INSERT INTO [News]
(strDate,Department,Title,ShortDescription,strCont ent) VALUES (" & strDate1
& ",'" & strDepartment1 & "','" & strNewsTitle1 & "','" &
strShortDescription1 & "','" & strDescription1 & "')" Set rsnews =
data.execute(sql1) Set rsnews = Nothing
jason Guest
-
updateable query
When I start my Site on localhost (W2003Server, IIS, ASP, VB-DLL), it works fine, when I start the Site from a WinXP-Pro, I get the following error,... -
What is updateable Query?
Hi everybody, Here I see that error message on the server my aspx file working: Exception Details: System.Data.OleDb.OleDbException: Operation... -
Operation must use an updateable query Error
Group, On a W2K3 / IIS 6.0 Server, we have a Web Site reading an .mdb fine. When it tries to save, it generates the following error: ... -
INSERT error :: Updateable query?
I am picking up an error message on a straightforward INSERT - do I need an optimistic-type to get this working....here is is the error: ... -
error '80004005'; Operation must use an updateable query.
Are the users logging in with NT authentication? If so, the users will need the NTFS permissions on the mdb as opposed to the IUSR account. Ray... -
Ray at #2
Re: Insert error :: must be updateable?
[url]www.aspfaq.com[/url]
Ray at work
"jason" <jason@catamaranco.com> wrote in message
news:%23n3kmoWTDHA.2152@TK2MSFTNGP12.phx.gbl...only> I am picking up the following error message which is strange as it hasstrDate1> started happening since I have transferred servers:
>
>
> Microsoft JET Database Engine error '80004005' Operation must use an
> updateable query./admin/news1.asp, line 59
>
>
> sql1 = "INSERT INTO [News]
> (strDate,Department,Title,ShortDescription,strCont ent) VALUES (" &> & ",'" & strDepartment1 & "','" & strNewsTitle1 & "','" &
> strShortDescription1 & "','" & strDescription1 & "')" Set rsnews =
> data.execute(sql1) Set rsnews = Nothing
>
>
Ray at Guest
-
Ray at #3
Re: Insert error :: must be updateable?
Also, do not create a recordset when you delete. Just do
data.execute sql1
data.close
set data = nothing
Ray at work
"Ray at <%=sLocation%>" <ask@me.forit> wrote in message
news:eJDvvxWTDHA.2120@TK2MSFTNGP10.phx.gbl...> [url]www.aspfaq.com[/url]
>
> Ray at work
>
> "jason" <jason@catamaranco.com> wrote in message
> news:%23n3kmoWTDHA.2152@TK2MSFTNGP12.phx.gbl...> only> > I am picking up the following error message which is strange as it has> strDate1> > started happening since I have transferred servers:
> >
> >
> > Microsoft JET Database Engine error '80004005' Operation must use an
> > updateable query./admin/news1.asp, line 59
> >
> >
> > sql1 = "INSERT INTO [News]
> > (strDate,Department,Title,ShortDescription,strCont ent) VALUES (" &>> > & ",'" & strDepartment1 & "','" & strNewsTitle1 & "','" &
> > strShortDescription1 & "','" & strDescription1 & "')" Set rsnews =
> > data.execute(sql1) Set rsnews = Nothing
> >
> >
>
Ray at Guest
-
jason #4
Re: Insert error :: must be updateable?
I inherited an entire backend from the previous developers and I am just
trying to stay afloat while moving servers :)) - Thanks!
"Aaron Bertrand - MVP" <aaron@TRASHaspfaq.com> wrote in message
news:OGmbl9WTDHA.3636@tk2msftngp13.phx.gbl...>> > Microsoft JET Database Engine error '80004005' Operation must use an
> > updateable query./admin/news1.asp, line 59
> [url]http://www.aspfaq.com/2062[/url]
> [url]http://www.aspfaq.com/2009[/url]
>>> > Set rsnews = data.execute(sql1)
> > Set rsnews = Nothing
> Why are you using a recordset to execute a DELETE query?
>
> [url]http://www.aspfaq.com/2191[/url]
>
>
jason Guest



Reply With Quote

