the MySql command is being skipped and the error being execute within th Try Catch..
Please help of possible
Dim myConnString = ";" & _
"Database = inventory;" & _
"Uid = root;" & _
"Pwd = root;" & _
"Connect Timeout = 30;"
Dim myupdateconnection As New MySqlConnection(myConnString)
Dim commandUpdate As New MySqlCommand("UPDATE tblcustomer SET FirstName = '" & fName.Text & "'," & _
"LastName = '" & lName.Text & "'," & _
"Address = '" & addr.Text & "'," & _
"StateProvince = '" & state.Text & "'," & _
"ZipCode = '" & zip.Text & "'," & _
"Country = '" & country.Text & "'," & _
"Phone = '" & cNumber.Text & "'," & _
"Fax = '" & fax.Text & "', " & _
"WHERE CustomerID = '" & id.Text & "' ", myupdateconnection)
Try
myupdateconnection.Open()
commandUpdate.ExecuteNonQuery()
Catch
MessageBox.Show("Error")
Finally
myupdateconnection.Close()
End Try