Đối với tôi, việc tăng CommandTimeout đã khắc phục sự cố.
Mẫu mã:
//time in seconds
int timeOut = 300;
//create command
MySqlCommand myCommand = new MySqlCommand(stringSQL);
//set timeout
myCommand.CommandTimeout = timeOut;
Đối với tôi, việc tăng CommandTimeout đã khắc phục sự cố.
Mẫu mã:
//time in seconds
int timeOut = 300;
//create command
MySqlCommand myCommand = new MySqlCommand(stringSQL);
//set timeout
myCommand.CommandTimeout = timeOut;