0

ここで問題があります。

これが私のケースです:

Quantityプログラムから与えられた値に基づいてプログラムからの値を更新し、それをデータベースに差し引きたいと思います。例:データベース100Quantityある場合、プログラムを実行して を に更新するQuantity50Quantityデータベース内の は になります50

これが私の問題です:

私はすでにQuantityプログラムからデータベースに値を更新できますがQuantity、プログラムで与えた値に関係なく、データベースのQuantity値は常に 0 に更新されます。

コードは次のとおりです。

private void UpdateQuantity()
        {
            int index = 0;
            int codeValue = 0;

            List<int> integers = new List<int>();

            foreach (var tb in textBoxCodeContainer)
            {
                if (int.TryParse(tb.Text, out codeValue))
                {
                    integers.Add(codeValue);
                }
            }

            string command = "UPDATE [Seranne] SET [Quantity]= " + newVal + " WHERE [Code] IN(" + string.Join(", ", integers) + ")";

            OleDbConnection conn = new OleDbConnection(connectionString);

            OleDbDataReader dReader;

            OleDbCommand cmd = new OleDbCommand(command, conn);

            conn.Open();

            cmd.Parameters.Add("Quantity", System.Data.OleDb.OleDbType.Integer);

            dReader = cmd.ExecuteReader();

            while(dReader.Read())
            {
                if (textBoxQuantityContainer[index].Value != 0 && textBoxQuantityContainer[index].Value >= Convert.ToDecimal(dReader["Quantity"].ToString()))
                {
                    newVal = Convert.ToDecimal(dReader["Quantity"].ToString()) - textBoxQuantityContainer[index].Value;
                    cmd.ExecuteNonQuery();
                }

                index += 1;
            }

            if (newVal == 0)
            {
                System.Media.SoundPlayer sounds = new System.Media.SoundPlayer(@"C:\Windows\Media\Windows Notify.wav");
                sounds.Play();
                MessageBox.Show("Cannot Update", "Error");
            }

            else
            {
                System.Media.SoundPlayer sound = new System.Media.SoundPlayer(@"C:\Windows\Media\Windows Notify.wav");
                sound.Play();
                MessageBox.Show("Was Updated Successfully", "Success");
            }

            dReader.Close();
            conn.Close();
        }

newVal値はそのまま表示され0ます。キープ0のためnewVal、プログラムの「更新」ボタンをクリックすると、プログラムはこれを表示します:

if (newVal == 0)
                {
                    System.Media.SoundPlayer sounds = new System.Media.SoundPlayer(@"C:\Windows\Media\Windows Notify.wav");
                    sounds.Play();
                    MessageBox.Show("Cannot Update", "Error");
                }

しかし、データベースにチェックインすると、プログラムで指定された値とkeepに関係なく、Quantity値が に変更されます。したがって、原因は keep appearであり、データベースはそれを認識し、に基づいて更新すると思いますが、このコードは機能していないようです:0newVal0newVal0newVal

if (textBoxQuantityContainer[index].Value != 0 && textBoxQuantityContainer[index].Value >= Convert.ToDecimal(dReader["Quantity"].ToString()))
                    {
                        newVal = Convert.ToDecimal(dReader["Quantity"].ToString()) - textBoxQuantityContainer[index].Value;
                        cmd.ExecuteNonQuery();
                    }

皆さん、私を助けてくれませんか? 前もって感謝します!

編集コード:

private void UpdateQuantity()
    {
        int index = 0;
        int codeValue = 0;
        string command;

        List<int> integers = new List<int>();

        foreach (var tb in textBoxCodeContainer)
        {
            if (int.TryParse(tb.Text, out codeValue))
            {
                integers.Add(codeValue);
            }
        }

        OleDbConnection conn = new OleDbConnection(connectionString);

        OleDbDataReader dReader;

        OleDbCommand cmd = new OleDbCommand(command, conn); // error: use of unassigned local variable, if i put "string command = '' ", the program will run, but the command not recognized by system, and the error will be: Command text was not set for the command object.

        conn.Open();

        cmd.Parameters.Add("Quantity", System.Data.OleDb.OleDbType.Integer);

        dReader = cmd.ExecuteReader();

        while(dReader.Read())
        {
            if (textBoxQuantityContainer[index].Value != 0 && textBoxQuantityContainer[index].Value >= Convert.ToDecimal(dReader["Quantity"].ToString()))
            {
                newVal = Convert.ToDecimal(dReader["Quantity"].ToString()) - textBoxQuantityContainer[index].Value;
                command = "UPDATE [Seranne] SET [Quantity]= " + newVal + " WHERE [Code] IN(" + string.Join(", ", integers) + ")";
                cmd.ExecuteNonQuery();
            }

            index += 1;
        }

        if (newVal == 0)
        {
            System.Media.SoundPlayer sounds = new System.Media.SoundPlayer(@"C:\Windows\Media\Windows Notify.wav");
            sounds.Play();
            MessageBox.Show("Cannot Update", "Error");
        }

        else
        {
            System.Media.SoundPlayer sound = new System.Media.SoundPlayer(@"C:\Windows\Media\Windows Notify.wav");
            sound.Play();
            MessageBox.Show("Was Updated Successfully", "Success");
        }

        dReader.Close();
        conn.Close();
    }
4

1 に答える 1