/// <summary>
 /// Closes the connection
 /// </summary>
 public virtual void Close()
 {
     ExecutableCommand.Close();
 }
 /// <summary>
 /// Closes the connection
 /// </summary>
 public virtual SQLHelper Close()
 {
     ExecutableCommand.Close();
     return(this);
 }