AutoQuery.MySqlBase.CommandSQL C# (CSharp) Méthode

CommandSQL() public méthode

public CommandSQL ( string _comm ) : void
_comm string
Résultat void
        public void CommandSQL(string _comm)
        {
            using (MySqlCommand sqlCommand = new MySqlCommand(_comm, Connection))
            {
                sqlCommand.CommandType = CommandType.StoredProcedure;
                sqlCommand.ExecuteNonQuery();
                LogConsole.Show(_comm + " Complete!");
            }
        }