Mysql
 sql >> Database >  >> RDS >> Mysql

mysql Errore di timeout del comando

Per me l'aumento di CommandTimeout ha risolto il problema.

Esempio di codice:

//time in seconds
int timeOut = 300;
//create command
MySqlCommand myCommand = new MySqlCommand(stringSQL);
//set timeout
myCommand.CommandTimeout = timeOut;