public static bool AddCompany(string name, string country, int year)
 {
     try {
         string fill = "1";
         DBMusicDatabase.AddRow(DBSQLQueries.AddCompany(), int.Parse(fill), name, fill, fill, fill, country, year, fill, fill, int.Parse(fill), fill, fill);
         return(true);
     } catch (Exception ex) {
         throw ex;
     }
 }