Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
!!!WARNING !!! !!!WARNING !!! SQL INJECTION VULNERABILITY !!!WARNING !!! !!!WARNING !!! – Morons Feb 20 at 3:03
possible duplicate of Does this code prevent SQL injection? – Jim G. Feb 20 at 3:16
2  
Besides the obvious SQL injection problem nicely pointed out by Morons, you're supplying values to your query that can't be converted automatically to the correct format. Date fields are a frequent cause of this, but (for example) if your txtEmpID.Text field is non-numeric and the [EmployeeID] field is numeric, you'll get the same error. – Juffy Feb 20 at 3:26
@JimG. - not really, the question is about data type mismatch errors, not SQL injection. – Juffy Feb 20 at 3:31
1  
@Juffy: This method should be refactored to use a parameterized query. Therefore, the user should be redirected to the specified question first because it contains the solution to his/her problem. In its current form, this question cannot help future visitors because it is asking for help to solve the wrong problem. – Jim G. Feb 20 at 3:34

migrated from programmers.stackexchange.com Feb 20 at 3:13

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.