Updating datasource with dataset problem -Microsoft Access
-
2012년 5월 1일 화요일 오전 4:52
Hi I'm attempting to update details to an external Microsoft access file, database connection to the file is ok.
I'm getting the following syntax error on line "Dadapt.Update(Dset, "CustomerBook")" :
OleDBException was unhandled
Syntax error in UPDATE statement.
Private Sub btnUpdate_Click(sender As System.Object, e As System.EventArgs) Handles btnUpdate.Click Dim CommandBuild As New OleDb.OleDbCommandBuilder(Dadapt) Dset.Tables("CustomerBook").Rows(count).Item(1) = txtbxName.Text Dset.Tables("CustomerBook").Rows(count).Item(2) = txtSurname.Text Dset.Tables("CustomerBook").Rows(count).Item(3) = txtbxaddress.Text Dset.Tables("CustomerBook").Rows(count).Item(4) = txtbxPost.Text --> Dadapt.Update(Dset, "CustomerBook") MsgBox("Details updated") End SubThis error only occurs when the dataset is changed before updating.
any suggestions would be great!
- 이동됨 Bob_BaoMVP 2012년 5월 3일 목요일 오전 4:25 (From:Visual Studio Tools for Office)
모든 응답
-
2012년 5월 1일 화요일 오전 7:31
Hi Stefan
This question would probably be better in a forum that supports database connections. It has nothing to do with the VSTO technology, so you're more likely to get quick and useful asisstance in a forum that specializes in working with data... Would you like us to move it for you?
Cindy Meister, VSTO/Word MVP
- 편집됨 Cindy Meister MVPMVP 2012년 5월 1일 화요일 오전 7:31 added question about moving
-
2012년 5월 4일 금요일 오전 4:47소유자
Try http://social.msdn.microsoft.com/Forums/en-US/accessdev/threads
Ed Price (a.k.a User Ed), SQL Server Experience Program Manager (Blog, Twitter, Wiki)
- 답변으로 제안됨 Ed Price - MSFTMicrosoft Employee, Owner 2012년 5월 4일 금요일 오전 4:47
- 답변으로 표시됨 Ed Price - MSFTMicrosoft Employee, Owner 2012년 5월 13일 일요일 오전 6:06

