/// <summary> /// The FL_DataTable /// </summary> /// <param name="Cmd">The Cmd<see cref="MySqlCommand"/></param> /// <returns>The <see cref="DataTable"/></returns> public static DataTable FL_DataTable(this MySqlCommand Cmd) { return(Cmd.FL_MySql_DataTable()); }
/// <summary> /// The FL_DataTable /// </summary> /// <param name="Cmd">The Cmd<see cref="MySqlCommand"/></param> /// <param name="Query">The Query<see cref="string"/></param> /// <param name="Con">The Con<see cref="MySqlConnection"/></param> /// <returns>The <see cref="DataTable"/></returns> public static DataTable FL_DataTable(this MySqlCommand Cmd, string Query, MySqlConnection Con) { return(Cmd.FL_MySql_DataTable(Query, Con)); }