コード例 #1
0
ファイル: List.cs プロジェクト: namitoyokota/grocery-bama
 private void DisplayStores()
 {
     textAll.Text = "";
     fiveReached  = 0;
     comboSelect.Items.Clear();
     for (int i = counter; i < stores.Count; i++)
     {
         if (fiveReached == 5)
         {
             break;
         }
         ADDRESS store_address = null;
         foreach (ADDRESS item in addresses)
         {
             if (stores[i].address_id == item.id)
             {
                 store_address = item;
                 break;
             }
         }
         textAll.AppendText(String.Format("Store Name: {0} | Address: {1} {2} | Phone: {3} | Hours: {4}-{5}",
                                          stores[i].store_name, store_address.house_number, store_address.street, stores[i].phone, stores[i].opening_time, stores[i].closing_time));
         textAll.AppendText(Environment.NewLine);
         textAll.AppendText(Environment.NewLine);
         string comboAdd = "";
         comboAdd += stores[i].store_id;
         comboAdd += " - ";
         comboAdd += stores[i].store_name;
         comboSelect.Items.Add(comboAdd);
         fiveReached++;
         counter++;
     }
 }
コード例 #2
0
        private void LoadAll()
        {
            string connectionString = System.Configuration.ConfigurationManager.ConnectionStrings["Default"].ConnectionString;
            string queryStatement   = "SELECT * FROM [GROCERYBAMA1].[dbo].[grocerystore] ORDER BY store_id";

            using (SqlConnection _con = new SqlConnection(connectionString))
            {
                using (SqlCommand _cmd = new SqlCommand(queryStatement, _con))
                {
                    DataTable tb = new DataTable();

                    SqlDataAdapter _dap = new SqlDataAdapter(_cmd);

                    _con.Open();
                    _dap.Fill(tb);
                    _con.Close();
                    foreach (DataRow dr in tb.Rows)
                    {
                        GROCERYSTORE addStore = new GROCERYSTORE();
                        addStore.store_id     = Int32.Parse(dr["store_id"].ToString());
                        addStore.store_name   = dr["store_name"].ToString();
                        addStore.phone        = dr["phone"].ToString();
                        addStore.address_id   = Int32.Parse(dr["address_id"].ToString());
                        addStore.opening_time = dr["opening_time"].ToString();
                        addStore.closing_time = dr["closing_time"].ToString();
                        stores.Add(addStore);
                    }
                }
                queryStatement = "SELECT * FROM [GROCERYBAMA1].[dbo].[address]";

                using (SqlCommand _cmd = new SqlCommand(queryStatement, _con))
                {
                    DataTable tb = new DataTable();

                    SqlDataAdapter _dap = new SqlDataAdapter(_cmd);

                    _con.Open();
                    _dap.Fill(tb);
                    _con.Close();
                    foreach (DataRow dr in tb.Rows)
                    {
                        ADDRESS addAddress = new ADDRESS();
                        addAddress.id           = Int32.Parse(dr["id"].ToString());
                        addAddress.house_number = dr["house_number"].ToString();
                        addAddress.state        = dr["state"].ToString();
                        addAddress.street       = dr["street"].ToString();
                        addAddress.city         = dr["city"].ToString();
                        addAddress.zip_code     = dr["zip_code"].ToString();
                        addresses.Add(addAddress);
                    }
                }
            }
        }
コード例 #3
0
        private void button_update_Click(object sender, EventArgs e)
        {
            string connectionString = System.Configuration.ConfigurationManager.ConnectionStrings["Default"].ConnectionString;

            using (SqlConnection _con = new SqlConnection(connectionString))
            {
                string query = "UPDATE [User] SET username = @username, password = @password, user_type = 'buyer', email = @email, first_name = @first_name, last_name = @last_name WHERE username = @old_username";
                using (SqlCommand command = new SqlCommand(query, _con))
                {
                    command.Parameters.Add("@username", SqlDbType.VarChar).Value     = Globals.Persistent_Current.username;
                    command.Parameters.Add("@old_username", SqlDbType.VarChar).Value = Globals.Persistent_Current.username;
                    command.Parameters.Add("@password", SqlDbType.VarChar).Value     = Globals.Persistent_Current.password;
                    command.Parameters.Add("@email", SqlDbType.VarChar).Value        = textEmail.Text;
                    command.Parameters.Add("@first_name", SqlDbType.VarChar).Value   = textFirstName.Text;
                    command.Parameters.Add("@last_name", SqlDbType.VarChar).Value    = textLastName.Text;
                    _con.Open();
                    int result = command.ExecuteNonQuery();
                    _con.Close();

                    if (result < 0)
                    {
                        MessageBox.Show("There was an error.");
                    }
                }

                Globals.Persistent_Current.email      = textEmail.Text;
                Globals.Persistent_Current.first_name = textFirstName.Text;
                Globals.Persistent_Current.last_name  = textLastName.Text;

                query = "UPDATE [BUYER] SET username = @username, phone = @phone, address_id = @address_id, default_payment = @default_payment, default_store_id = @default_store_id where username = @old_username";
                using (SqlCommand command = new SqlCommand(query, _con))
                {
                    command.Parameters.Add("@username", SqlDbType.VarChar).Value        = Globals.Persistent_Current.username;
                    command.Parameters.Add("@old_username", SqlDbType.VarChar).Value    = Globals.Persistent_Current.username;
                    command.Parameters.Add("@phone", SqlDbType.VarChar).Value           = textPhone.Text;
                    command.Parameters.Add("@address_id", SqlDbType.Int).Value          = Globals.Persistent_Address.id;
                    command.Parameters.Add("@default_payment", SqlDbType.VarChar).Value = Globals.Preferred_Credit;
                    command.Parameters.Add("@default_store_id", SqlDbType.Int).Value    = Int32.Parse(comboStore.Text.Split('-')[0].Trim());
                    _con.Open();
                    int result = command.ExecuteNonQuery();
                    _con.Close();

                    if (result < 0)
                    {
                        MessageBox.Show("There was an error.");
                    }
                }

                Globals.Persistent_Buyer.phone            = textPhone.Text;
                Globals.Persistent_Buyer.default_store_id = Int32.Parse(comboStore.Text.Split('-')[0].Trim());

                query = "UPDATE [ADDRESS] SET id = @id, house_number = @house_number, street = @street, city = @city, state = @state, zip_code = @zip_code where id = @old_id";
                using (SqlCommand command = new SqlCommand(query, _con))
                {
                    command.Parameters.Add("@id", SqlDbType.Int).Value           = Globals.Persistent_Address.id;
                    command.Parameters.Add("@old_id", SqlDbType.Int).Value       = Globals.Persistent_Address.id;
                    command.Parameters.Add("@house_number", SqlDbType.Int).Value = Int32.Parse(textHouseNumber.Text);
                    command.Parameters.Add("@street", SqlDbType.VarChar).Value   = textStreet.Text;
                    command.Parameters.Add("@city", SqlDbType.VarChar).Value     = textCity.Text;
                    command.Parameters.Add("@state", SqlDbType.VarChar).Value    = textState.Text;
                    command.Parameters.Add("@zip_code", SqlDbType.Int).Value     = Int32.Parse(textZip.Text);
                    _con.Open();
                    int result = command.ExecuteNonQuery();
                    _con.Close();

                    if (result < 0)
                    {
                        MessageBox.Show("There was an error.");
                    }
                }

                Globals.Persistent_Address.city         = textCity.Text;
                Globals.Persistent_Address.house_number = textHouseNumber.Text;
                Globals.Persistent_Address.street       = textStreet.Text;
                Globals.Persistent_Address.zip_code     = textZip.Text;
                Globals.Persistent_Address.state        = textState.Text;

                foreach (var item in stores)
                {
                    if (Int32.Parse(comboStore.Text.Split('-')[0].Trim()) == item.store_id)
                    {
                        Globals.Persistent_Store = item;
                        break;
                    }
                }
                query = "select * from address where id = @store_id";
                using (SqlCommand command = new SqlCommand(query, _con))
                {
                    command.Parameters.Add("@store_id", SqlDbType.Int).Value = Globals.Persistent_Store.address_id;
                    DataTable tb = new DataTable();

                    SqlDataAdapter _dap = new SqlDataAdapter(command);

                    _con.Open();
                    _dap.Fill(tb);
                    _con.Close();
                    foreach (DataRow dr in tb.Rows)
                    {
                        ADDRESS addAddress = new ADDRESS();
                        addAddress.id           = Int32.Parse(dr["id"].ToString());
                        addAddress.house_number = dr["house_number"].ToString();
                        addAddress.state        = dr["state"].ToString();
                        addAddress.street       = dr["street"].ToString();
                        addAddress.city         = dr["city"].ToString();
                        addAddress.zip_code     = dr["zip_code"].ToString();

                        Globals.Store_Address = addAddress;
                    }
                }
                MessageBox.Show("Update Successful.");
                this.Close();
            }
        }
コード例 #4
0
ファイル: Login.cs プロジェクト: namitoyokota/grocery-bama
        private void LoadAll()
        {
            string connectionString = System.Configuration.ConfigurationManager.ConnectionStrings["Default"].ConnectionString;

            using (SqlConnection _con = new SqlConnection(connectionString))
            {
                string queryStatement = "SELECT * FROM [GROCERYBAMA1].[dbo].[user]";

                using (SqlCommand _cmd = new SqlCommand(queryStatement, _con))
                {
                    DataTable tb = new DataTable();

                    SqlDataAdapter _dap = new SqlDataAdapter(_cmd);

                    _con.Open();
                    _dap.Fill(tb);
                    _con.Close();
                    foreach (DataRow dr in tb.Rows)
                    {
                        USER addUser = new USER();
                        addUser.first_name = dr["first_name"].ToString();
                        addUser.last_name  = dr["last_name"].ToString();
                        addUser.email      = dr["email"].ToString();
                        addUser.password   = dr["password"].ToString();
                        addUser.username   = dr["username"].ToString();
                        addUser.user_type  = dr["user_type"].ToString();
                        users.Add(addUser);
                    }
                }
                queryStatement = "SELECT * FROM [GROCERYBAMA1].[dbo].[buyer]";

                using (SqlCommand _cmd = new SqlCommand(queryStatement, _con))
                {
                    DataTable tb = new DataTable();

                    SqlDataAdapter _dap = new SqlDataAdapter(_cmd);

                    _con.Open();
                    _dap.Fill(tb);
                    _con.Close();
                    foreach (DataRow dr in tb.Rows)
                    {
                        BUYER addBuyer = new BUYER();
                        addBuyer.phone            = dr["phone"].ToString();
                        addBuyer.address          = Int32.Parse(dr["address_id"].ToString());
                        addBuyer.default_payment  = dr["default_payment"].ToString();
                        addBuyer.default_store_id = Int32.Parse(dr["default_store_id"].ToString());
                        addBuyer.username         = dr["username"].ToString();
                        buyers.Add(addBuyer);
                    }
                }

                queryStatement = "SELECT * FROM [GROCERYBAMA1].[dbo].[address]";

                using (SqlCommand _cmd = new SqlCommand(queryStatement, _con))
                {
                    DataTable tb = new DataTable();

                    SqlDataAdapter _dap = new SqlDataAdapter(_cmd);

                    _con.Open();
                    _dap.Fill(tb);
                    _con.Close();
                    foreach (DataRow dr in tb.Rows)
                    {
                        ADDRESS addAddress = new ADDRESS();
                        addAddress.id           = Int32.Parse(dr["id"].ToString());
                        addAddress.house_number = dr["house_number"].ToString();
                        addAddress.state        = dr["state"].ToString();
                        addAddress.street       = dr["street"].ToString();
                        addAddress.city         = dr["city"].ToString();
                        addAddress.zip_code     = dr["zip_code"].ToString();
                        addresses.Add(addAddress);
                    }
                }
                queryStatement = "SELECT * FROM [GROCERYBAMA1].[dbo].[grocerystore]";

                using (SqlCommand _cmd = new SqlCommand(queryStatement, _con))
                {
                    DataTable tb = new DataTable();

                    SqlDataAdapter _dap = new SqlDataAdapter(_cmd);

                    _con.Open();
                    _dap.Fill(tb);
                    _con.Close();
                    foreach (DataRow dr in tb.Rows)
                    {
                        GROCERYSTORE addStore = new GROCERYSTORE();
                        addStore.store_id     = Int32.Parse(dr["store_id"].ToString());
                        addStore.store_name   = dr["store_name"].ToString();
                        addStore.phone        = dr["phone"].ToString();
                        addStore.address_id   = Int32.Parse(dr["address_id"].ToString());
                        addStore.opening_time = dr["opening_time"].ToString();
                        addStore.closing_time = dr["closing_time"].ToString();
                        stores.Add(addStore);
                    }
                }
            }
        }