开发者

Need to edit coloumn 2 of row 0 of SSCE 3.5 database

开发者 https://www.devze.com 2023-01-28 12:29 出处:网络
I just need to edit coloumn 2 of row 0 of SSCE 3.5 database.I am using following code.It generates no error but database is also unchanged.

I just need to edit coloumn 2 of row 0 of SSCE 3.5 database. I am using following code. It generates no error but database is also unchanged.

Me.taSet.Fill(Me.Dsset.tblQuestions)
    Dsset.tblQuestions.Rows(0).Item(2) = "EDITED"
    taSet.Update(Dsset.tblQuestions)

Pleas开发者_如何学JAVAe advise.


If the insert and delete statements on your dataset are working, there must be something wrong with you update statement.

0

精彩评论

暂无评论...
验证码 换一张
取 消