I'm getting this error in VB2k8:
Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click
Dim str As String
str = "UPDATE EmployeeTable set [EmployeeName] = '" & txtEmpName.Text & "' , [Address] = '" & txtAddress.Text & "', [Phone] = '" & txtPhone.Text & "', [HiredDate] = '" & txtHiredDate.Text & "', [JobClassification] = '" & txtJobClassification.Text & "',[DateAdded] = '" & txtDateAdded.Text & "' WHERE [EmployeeID] = '" & txtEmpID.Text & "'"
Dim cmd As OleDbCommand = New OleDbCommand(str, myConnection)
Try
cmd.ExecuteNonQuery()
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub`
Can anyone offer a fix?
txtEmpID.Textfield is non-numeric and the[EmployeeID]field is numeric, you'll get the same error. – Juffy Feb 20 at 3:26