/// <summary>
 /// Ping
 /// </summary>
 /// <returns></returns>
 public bool Ping()
 {
     if (Reader != null)
     {
         throw new MySqlException(ResourceStrings.DataReaderOpen);
     }
     if (driver != null && driver.Ping())
     {
         return(true);
     }
     driver = null;
     SetState(ConnectionState.Closed, true);
     return(false);
 }