Click here to Skip to main content
15,897,187 members
Home / Discussions / Database
   

Database

 
GeneralRecordset "LIKE" filter of a number column Pin
Menny Even Danan1-Dec-04 21:51
Menny Even Danan1-Dec-04 21:51 
GeneralRe: Recordset "LIKE" filter of a number column Pin
jlawren72-Dec-04 5:27
jlawren72-Dec-04 5:27 
Generalcan't DELETE records in excel Pin
scoroop1-Dec-04 11:15
scoroop1-Dec-04 11:15 
GeneralRe: can't DELETE records in excel Pin
Christian Graus1-Dec-04 12:27
protectorChristian Graus1-Dec-04 12:27 
GeneralRe: can't DELETE records in excel Pin
scoroop1-Dec-04 12:36
scoroop1-Dec-04 12:36 
GeneralRe: can't DELETE records in excel Pin
jonathan152-Dec-04 23:21
jonathan152-Dec-04 23:21 
GeneralRe: can't DELETE records in excel Pin
scoroop3-Dec-04 2:38
scoroop3-Dec-04 2:38 
GeneralErr -2147467259: Operation must use an updatable query. Pin
Khang Nguyen1-Dec-04 10:23
Khang Nguyen1-Dec-04 10:23 
Dear Gurus,

Err Num: -2147467259:
Err Desc: Operation must use an updatable query.
Err Source: Microsoft JET Database Engine

The majority of the users run into this crazy error when trying to insert, update or delete a record. I, my boss and the IT admin have no problems at all with either inserting, updating, or deleting records. The three of us have full access to the location where the MS Access DB resides. The error only happens to the rest of the users at my work place. We added read/write access to the troublesome users but did not fix the problem.

IIS Version: 5.0
App: ASP
Script: VBScript
DB: MS Access

I appreciate any help from you gurus,
Khang Smile | :)

=========================================================================
Here is the code snippets:


Global.asp:
----------

Sub Session_OnStart
' Database Parameters
Session( "Database_Location" ) = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= " & server.mappath("\CMPSupport\database\support.mdb") & ";"
End Sub


Categories.asp:
--------------
' Open Database Connection
set myConn = Server.CreateObject( "ADODB.Connection" )
MyConn.Open Session( "Database_Location" )
...

If Category <> "" Then
' Insert new Category to DB
SQL = "INSERT into Download_SubCategories (Category) values ('" & Category & "');"
Set RS = MyConn.Execute(SQL)
GeneralRe: Err -2147467259: Operation must use an updatable query. Pin
Edbert P1-Dec-04 10:34
Edbert P1-Dec-04 10:34 
GeneralRe: Err -2147467259: Operation must use an updatable query. Pin
Khang Nguyen2-Dec-04 4:21
Khang Nguyen2-Dec-04 4:21 
GeneralRe: Doing LIKE for a numeric column Pin
Boaz V1-Dec-04 5:14
Boaz V1-Dec-04 5:14 
GeneralDoing LIKE for a numeric column Pin
Menny Even Danan1-Dec-04 4:46
Menny Even Danan1-Dec-04 4:46 
GeneralRe: Doing LIKE for a numeric column Pin
lisoft3-Dec-04 15:15
lisoft3-Dec-04 15:15 
GeneralRe: Doing LIKE for a numeric column Pin
Menny Even Danan5-Dec-04 1:17
Menny Even Danan5-Dec-04 1:17 
GeneralDoing LIKE for a numeric column Pin
Boaz V1-Dec-04 4:43
Boaz V1-Dec-04 4:43 
GeneralRe: Doing LIKE for a numeric column Pin
Colin Angus Mackay1-Dec-04 5:07
Colin Angus Mackay1-Dec-04 5:07 
GeneralRe: Doing LIKE for a numeric column Pin
Chris Meech1-Dec-04 5:17
Chris Meech1-Dec-04 5:17 
GeneralMissing data from result Pin
Andy *M*30-Nov-04 13:14
Andy *M*30-Nov-04 13:14 
GeneralRe: Missing data from result Pin
Andy *M*30-Nov-04 13:39
Andy *M*30-Nov-04 13:39 
GeneralWin 2000, .net deployment Pin
Member 155577930-Nov-04 9:10
Member 155577930-Nov-04 9:10 
GeneralUnusual INSERT INTO problem using ADO, C# and MSAccess DB Pin
donmorr30-Nov-04 7:01
donmorr30-Nov-04 7:01 
GeneralRe: Unusual INSERT INTO problem using ADO, C# and MSAccess DB Pin
Luis Alonso Ramos30-Nov-04 8:11
Luis Alonso Ramos30-Nov-04 8:11 
GeneralRe: Unusual INSERT INTO problem using ADO, C# and MSAccess DB Pin
donmorr30-Nov-04 8:23
donmorr30-Nov-04 8:23 
GeneralRe: Unusual INSERT INTO problem using ADO, C# and MSAccess DB Pin
Anonymous1-Dec-04 1:59
Anonymous1-Dec-04 1:59 
GeneralDataset 2 Xml - attribute problem Pin
Xabatcha30-Nov-04 3:11
Xabatcha30-Nov-04 3:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.