Voor mij loste het verhogen van de CommandTimeout het probleem op.
Codevoorbeeld:
//time in seconds
int timeOut = 300;
//create command
MySqlCommand myCommand = new MySqlCommand(stringSQL);
//set timeout
myCommand.CommandTimeout = timeOut;
Voor mij loste het verhogen van de CommandTimeout het probleem op.
Codevoorbeeld:
//time in seconds
int timeOut = 300;
//create command
MySqlCommand myCommand = new MySqlCommand(stringSQL);
//set timeout
myCommand.CommandTimeout = timeOut;