11/04/2016, 19:27
|
| | 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");
}
}
|