Exemple #1
0
 public void cerealeMagazinID(int id)
 {
     sqlConnection.Open();
     SqlCommand sqlCommand = new SqlCommand("select * from Cereale where idCereale in (select idCereale from InteractionMagazinCereale where InteractionMagazinCereale.idMagazin='"+id+"')", sqlConnection);
     using (SqlDataReader reader = sqlCommand.ExecuteReader())
     {
         Program.magazinPrimar.getListCereale().Clear();
         while (reader.Read())
         {
             Cereale cereale = new Cereale();
             cereale.id = Int32.Parse(reader[0].ToString());
             cereale.nameComponentProdus = reader[1].ToString();
             cereale.cantitateaProdus = Int32.Parse(reader[2].ToString());
             cereale.cantitateUmiditate = reader[3].ToString();
             Program.magazinPrimar.getListCereale().Add(cereale);
         }
     }
     sqlCommand.Dispose();
     sqlConnection.Close();
 }
Exemple #2
0
        public void cerealeMagazinID(int id)
        {
            sqlConnection.Open();
            SqlCommand sqlCommand = new SqlCommand("select * from Cereale where idCereale in (select idCereale from InteractionMagazinCereale where InteractionMagazinCereale.idMagazin='" + id + "')", sqlConnection);

            using (SqlDataReader reader = sqlCommand.ExecuteReader())
            {
                Program.magazinPrimar.getListCereale().Clear();
                while (reader.Read())
                {
                    Cereale cereale = new Cereale();
                    cereale.id = Int32.Parse(reader[0].ToString());
                    cereale.nameComponentProdus = reader[1].ToString();
                    cereale.cantitateaProdus    = Int32.Parse(reader[2].ToString());
                    cereale.cantitateUmiditate  = reader[3].ToString();
                    Program.magazinPrimar.getListCereale().Add(cereale);
                }
            }
            sqlCommand.Dispose();
            sqlConnection.Close();
        }
Exemple #3
0
 public void cereale()
 {
     Cereale cereale;
     sqlConnection.Open();
     SqlCommand sqlCommand = new SqlCommand("select * from Cereale", sqlConnection);
     using (SqlDataReader reader = sqlCommand.ExecuteReader())
     {
         Program.getListCereale().Clear();
         while (reader.Read())
         {
             cereale = new Cereale();
             cereale.id = Int32.Parse(reader[0].ToString());
             cereale.nameComponentProdus = reader[1].ToString();
             cereale.cantitateaProdus = Int32.Parse(reader[2].ToString());
             cereale.cantitateUmiditate = reader[3].ToString();
             Program.getListCereale().Add(cereale);
         }
     }
     sqlCommand.Dispose();
     sqlConnection.Close();
 }
Exemple #4
0
        public void cereale()
        {
            Cereale cereale;

            sqlConnection.Open();
            SqlCommand sqlCommand = new SqlCommand("select * from Cereale", sqlConnection);

            using (SqlDataReader reader = sqlCommand.ExecuteReader())
            {
                Program.getListCereale().Clear();
                while (reader.Read())
                {
                    cereale    = new Cereale();
                    cereale.id = Int32.Parse(reader[0].ToString());
                    cereale.nameComponentProdus = reader[1].ToString();
                    cereale.cantitateaProdus    = Int32.Parse(reader[2].ToString());
                    cereale.cantitateUmiditate  = reader[3].ToString();
                    Program.getListCereale().Add(cereale);
                }
            }
            sqlCommand.Dispose();
            sqlConnection.Close();
        }