将数据更新到数据库不起作用

时间:2013-08-28 00:35:37

标签: c# database winforms ms-access

我遇到了问题。我想将数据更新到数据库,但数据库不会更新。

以下是代码:

else if (firstForm.textBox1.Text == "Seranne")
            {
                string query = "SELECT [Quantity], [Description], [Price] FROM [Seranne] WHERE [Code] IN (";

                OleDbConnection conn = new OleDbConnection(connectionString);

                conn.Open();

                if (int.TryParse(this.textBoxCodeContainer[0].Text, out codeValue))
                {
                    query = query + codeValue.ToString();
                }

                for (int i = 1; i < 17; i++)
                {
                    if (int.TryParse(this.textBoxCodeContainer[i].Text, out codeValue))
                    {
                        query = query + "," + codeValue.ToString();
                    }
                }

                query = query + ")";

                OleDbCommand cmd = new OleDbCommand(query, conn);

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

                OleDbDataReader dReader;

                dReader = cmd.ExecuteReader();

                while (dReader.Read())
                {
                    if (textBoxCodeContainer[index].TextLength != 0)
                    {
                        this.textBoxQuantityContainer[index].Maximum = Convert.ToDecimal(dReader["Quantity"].ToString());
                        this.textBoxDescContainer[index].Text = dReader["Description"].ToString();
                        this.textBoxSubTotalContainer[index].Text = dReader["Price"].ToString();
                    }

                    if (textBoxQuantityContainer[index].Value != 0 && textBoxQuantityContainer[index].Value >= Convert.ToDecimal(dReader["Quantity"].ToString()))
                    {
                        newVal = textBoxQuantityContainer[index].Value - Convert.ToDecimal(dReader["Quantity"].ToString());
                        cmd = new OleDbCommand("UPDATE [Seranne] SET [Quantity] ='" + newVal + "' WHERE [Code] IN ('");
                    }

                    index += 1;
                }

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

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

        private void button1_Click(object sender, EventArgs e)
        {
            UpdateQuantity();
        }

编辑:(下面的函数UpdateQuantity是当用户点击“更新”按钮时),当我点击“更新”按钮时出现错误,这里是错误:Syntax error (missing operator) in query expression '[Code] IN ('. < / p>

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

            string query = "SELECT [Quantity], [Description], [Price] FROM [Seranne] WHERE [Code] IN (";

            OleDbConnection conn = new OleDbConnection(connectionString);

            OleDbDataReader dReader;

            OleDbCommand cmd = new OleDbCommand(query, conn);

            conn.Open();

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

            dReader = cmd.ExecuteReader();

            if (textBoxQuantityContainer[index].Value != 0 && textBoxQuantityContainer[index].Value >= Convert.ToDecimal(dReader["Quantity"].ToString()))
            {
                cmd = new OleDbCommand("UPDATE [Seranne] SET [Quantity] ='" + newVal + "' WHERE [Code] IN (", conn);

                if (int.TryParse(this.textBoxCodeContainer[0].Text, out codeValue))
                {
                    query = query + codeValue.ToString();
                }

                for (int i = 1; i < 17; i++)
                {
                    if (int.TryParse(this.textBoxCodeContainer[i].Text, out codeValue))
                    {
                        query = query + "," + codeValue.ToString();
                    }
                }

                query = query + ")";

                newVal = textBoxQuantityContainer[index].Value - Convert.ToDecimal(dReader["Quantity"].ToString());
                cmd.ExecuteNonQuery();
                System.Media.SoundPlayer sound = new System.Media.SoundPlayer(@"C:\Windows\Media\Windows Notify.wav");
                sound.Play();
                MessageBox.Show("Updated Successfully", "Success");
            }

            index += 1;

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

        private void button1_Click(object sender, EventArgs e)
        {
            UpdateQuantity();
        }

以上代码全部工作,除了将数量更新到数据库。我的意思是,我将数据库中的数量设置为100,当我在程序中将数量设置为10并更新它时,数据库应该将数量更新为90(因为100 - 10),但它仍然是100。

我可能在某处错了吗?

以下是屏幕截图的链接:(ScreenShot 1)https://www.dropbox.com/s/rph5iuh371rc9ny/Untitled.png

(ScreenShot 2)https://www.dropbox.com/s/5q8pyztqy7ejupy/Capture.PNG

在屏幕截图1中,我已将数量设置为10,消息框显示数据已成功更新,数据库中的数据应为90(因为100-10)。但是,在数据库所在的屏幕截图2中,数量仍为100。

提前致谢!

1 个答案:

答案 0 :(得分:0)

您的更新查询

 cmd = new OleDbCommand("UPDATE [Seranne] SET [Quantity] ='" + newVal + "' WHERE [Code] IN ('");

似乎没有在您发布的代码中完成。我的猜测是你得到一个语法错误,你的代码没有陷阱和显示。