Mysql
 sql >> Base de données >  >> RDS >> Mysql

erreur de temporisation de la commande mysql

Pour moi, l'augmentation du CommandTimeout a résolu le problème.

Exemple de code :

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