Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Zeitüberschreitungsfehler bei mysql-Befehl

Für mich hat das Erhöhen des CommandTimeout das Problem behoben.

Codebeispiel:

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