1

Quantity という名前の列を持つより多くの行を持つストア テーブルがあり、tempStore テーブルもあります。この tempStore テーブルにデータを挿入し、すべてのデータを tempStore に入力すると、Quantity という名前の列もあります。データを Store テーブルに送信して Quantity 列のみを更新する [送信] ボタンがあります。送信ボタンを押すと、Store テーブルの Quantity 列は 30 になりますが、一致するすべての行を更新できないのはなぜですか?それは 1 つの行に対してのみ行われます。これは私のコードです:

SqlConnection con = null;
con = new SqlConnection(@"Data Source=.\SQLEXPRESS;Initial Catalog=SuperMarketDB;Integrated Security=True; MultipleActiveResultSets=True");
con.Open();

SqlCommand cmd = new SqlCommand("SELECT * FROM [Store]", con);
SqlDataReader dr = null;
dr = cmd.ExecuteReader();

int inID = 0;
Int64 itemNo = 0;
int iQuantity = 0;

while (dr.Read())
{
    inID = int.Parse(dr[0].ToString());
    itemNo = Int64.Parse(dr[1].ToString());
    iQuantity = int.Parse(dr[4].ToString());

    for (int i = 0; i <= tempStoreDataGridView.Rows.Count-1; i++)
    {
        if (tempStoreDataGridView.Rows[i].Cells[1].Value != null)
        {
            Int64 barcode = Int64.Parse(tempStoreDataGridView.Rows[i].Cells[1].Value.ToString());
            if (barcode == itemNo)
            {                   
                iQuantity = iQuantity + int.Parse(quantityTextBox.Text.ToString());
                inItemsTableAdapter1.UpdateQuery(iQuantity, itemNo, inID);
                tempStoreTableAdapter.DeleteQuery();
                tempStoreTableAdapter.Fill(this.tempStoreDataSet.TempStore);
                lblWarning.Visible = true;
            }
        }
    }
}
4

0 に答える 0