OleDB update command not changing data

前端 未结 3 723
臣服心动
臣服心动 2021-01-25 16:15

I\'m using Microsoft Access file as database. I have no problem with SELECT and INSERT queries but when I try to UPDATE, record in databas

3条回答
  •  迷失自我
    2021-01-25 16:59

    I would go to Microsoft Access and enter the command there and see what happens. It should tell you how many rows was affected. If it says zero rows, then break your query into smaller pieces, such as:

    select * where [ID]=value

    And then you should be able to track down where the problem is.

提交回复
热议问题