Click here to Skip to main content
15,886,077 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm just a beginner in using VB 2008..

My error says that OleDbException was unhandled then inside of this msgbox says "Syntax error in UPDATE statement." and its highlight the code com.ExecuteNonQuery()....

VB
Private Sub btnUpdate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnUpdate.Click
  
         Dim com As New OleDbCommand
         com.Connection = con
         com.CommandText = "UPDATE Employee set Last_Name='" & txtLastName.Text & "',First_Name='" & _
                             txtFirstName.Text & "',Middle_Name='" & txtMiddleName.Text & "',Age='" & _
                             txtAge.Text & "',Position='" & txtPosition.Text & _
                             "',Address=" & txtAddress.Text & "where Employee_ID=" & cboEmployeeID.Text
         com.ExecuteNonQuery()
         MsgBox("Record Updated")
         Call Md_Settings()     
 End Sub
Posted
Updated 24-Jan-10 4:53am
v4

1 solution

To get the error, you will need to catch the exception in the catch block.

Catch Ex as Exception<br />
//....display error contained in Ex here<br />
End Try


Edit your question, post the error here and someone might be able to help you further.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900