Пример #1
0
 /// <summary>
 /// Attempts to cancel the execution of a currently active command
 /// </summary>
 /// <remarks>
 /// Cancelling a currently active query only works with MySQL versions 5.0.0 and higher.
 /// </remarks>
 public override void Cancel()
 {
     connection.CancelQuery(connection.ConnectionTimeout);
     canceled = true;
 }