Código
Dim consulta As String = "Select CodigoCliente from cliente WHERE ( CodigoCliente='" & TxtEliminarCliente.Text & "');" Dim mysqladapter As New MySqlDataAdapter Dim tabla As New DataTable mysqladapter.Fill(tabla) If tabla.Rows.Count > 0 Then MsgBox("Error, el cliente no se encuentra en la Base de Datos") Else Dim consulta2 As String = "DELETE FROM clientes WHERE ( CodigoCliente = ' " & TxtEliminarCliente.Text & " ' );" FormPrincipal.con.borrarcliente(consulta2) End If
- Pero cuando ejecuto el programa me da el siguiente error:
A first chance exception of type 'System.InvalidOperationException' occurred in System.Data.dll
¿Alguien me puede ayudar? Gracias!!