I have a small ASP.NET Web App using VB.NET and am trying
to utilize an Access database, but cannot perform any
updates, inserts or deletes to the database. Only SELECT
clauses work. It throws the error on the following lines
that I have tried with an OleDbCommand object:

Error:
Operation must use an updateable query

Lines Attempted:

objDataComm.ExecuteReader()
objDataComm.ExecuteNonQuery()
objDataComm.ExecuteScalar()

I have read resolutions on changing the process model of
the ASP.NET worker process, but have no idea how it is
done, or if there are any other clear solutions to this.
Thanks.

Blueshift

Re: Operation must use an updateable query by Teemu

Teemu
Sun Jan 11 23:16:43 CST 2004

Hi,

see the following thread at ASP.NET Forums. All the information you need is
located there
http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&PostID=154273


--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist

"Blueshift" <anonymous@discussions.microsoft.com> wrote in message
news:07eb01c3d59b$048f8e70$a301280a@phx.gbl...
> I have a small ASP.NET Web App using VB.NET and am trying
> to utilize an Access database, but cannot perform any
> updates, inserts or deletes to the database. Only SELECT
> clauses work. It throws the error on the following lines
> that I have tried with an OleDbCommand object:
>
> Error:
> Operation must use an updateable query
>
> Lines Attempted:
>
> objDataComm.ExecuteReader()
> objDataComm.ExecuteNonQuery()
> objDataComm.ExecuteScalar()
>
> I have read resolutions on changing the process model of
> the ASP.NET worker process, but have no idea how it is
> done, or if there are any other clear solutions to this.
> Thanks.
>
> Blueshift
>