Hi folks,
Sorry for the repost. I'm using VB6 to update a dBase IV dbf file something like this:
When the code runs, I get error 3073-Operation must use an updateable query. Does anyone have any suggestions?
Thanks!
Sorry for the repost. I'm using VB6 to update a dBase IV dbf file something like this:
Code:
dim db as Dao.Database
dim strSQL as string
Set db = OpenDatabase("C:\PData", False, False, "dBase IV;")
strSQL = "UPDATE FlagTable Set ACD = 'D' WHERE PID IN (10200, 12400, 12600)"
db.Execute strSQL
When the code runs, I get error 3073-Operation must use an updateable query. Does anyone have any suggestions?
Thanks!