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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error: Operation must use an updateable query

Status
Not open for further replies.

Scally84

IS-IT--Management
Apr 26, 2005
18
BE
Hi,

I'm using a Microsoft Access database to store some data. Now I'm trying to insert some new data into this database. This is how my source code looks like:

Code:
InsertFormQuery = "INSERT INTO FILE_UPLOAD ( " & _
                                 "FILE_ID, FILE_NAME, FILE_DESC, FILE_FLAG , " & _
                                 "DATE_UPLOADED, URL, DEPT, SUB_DEPT, USERNAME) " & _
                                 "VALUES( " & _
                                 intID & ", " & _
                                 "'" & Replace(FileName, "'", "''") & "', " & _
                                 "'" & Replace(FileDesc, "'", "''") & "', " & _
                                 "'" & FILE_FLAG & "', " & _
                                 "'" & datum & "', " & _
                                 "'" & FileURL & "', " & _
                                 "'" & EL_DEPT & "', " & _
                                 "'" & Session("Dept") & "', " & _
                                 "'" & fusername & "')"        

                              
                              objCommand = new OleDbCommand(InsertFormQuery, objConnection)
                              
                              objCommand.ExecuteNonQuery()

Now when I run this code it works fine, on my local computer. But when I upload this code to a test server I get this error: "System.Data.OleDb.OleDbException: Operation must use an updateable query". I've looked up this error and found the following description: This error is typically encountered when your script attempts to perform an UPDATE or some other action that alters the information in the database. This error occurs because ADO is unable to write to the database. Does someone know a way to solve this problem?

Thanks

 
the .mdb file must have read /write permissions on the server...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top