02/01/2012, 16:09
|
| | | Fecha de Ingreso: noviembre-2010
Mensajes: 6
Antigüedad: 14 años, 1 mes Puntos: 0 | |
Respuesta: Timeout expired seria algo asi :
string Query = "tu consulta";
MySqlCommand cmd = new MySqlCommand(Query, cnx);
cmd.CommandType = CommandType.Text; cmd.CommandTimeout = 0;
//Cero indica que el tiempo de conexion se terminara hasta que se ejecute la consulta.
DataTable dtt = new DataTable();
dtt.Load(cmd.ExecuteReader(), LoadOption.OverwriteChanges); |