Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/04/2016, 19:27
diegoj9999
 
Fecha de Ingreso: noviembre-2015
Ubicación: NULL
Mensajes: 23
Antigüedad: 9 años
Puntos: 1
Respuesta: Problema de Select en C# (MySQL)

Si perdoname

Código:
 private void iniciarConexion1()
        {

            try
            {
                connectionString = "Server=localhost; Database=administracion ; Uid=root ; Pwd= ;";
                connection.ConnectionString = connectionString;
                connection.Open();
               
            }
            catch (MySqlException)
            {
                MessageBox.Show("Error");

            }

        }