如何使用SQL表中的数据验证DataGridView中的用户输入值?

时间:2013-04-23 18:23:27

标签: c# winforms

我是C#和Grid的新手,                我在SQL中有一个表,其中包含两列,Particulars和Price以及每一侧的值很少。另一方面,在C#win.form网格上,有两列详细信息和网格。当用户输入column1(详情)中的任何数据时,如果输入的数据与表中的值不匹配,则值应该抛出异常。 为此,我使用了CellEndEdit事件,但是在用户在空单元格中输入数据之后,如何根据DB表格值检查输入的数据是否正确。

我已成功将表单与DB连接,我用VS的数据设置选项成功完成了这个但是不知道如何用SQL数据库做这个,我试过但我很困惑用SQL数据库进行验证。这是我的代码:

namespace Small_Billing_System
{
public partial class hitbill : Form
{
    SqlConnection cn = new SqlConnection(@"server=people-pc\sqlexpress;integrated security=true;database=nec");
    SqlCommand cm = new SqlCommand();
    SqlDataAdapter da = new SqlDataAdapter();
    //da1, da2;
    // ds1, ds2;
    DataSet ds = new DataSet();
    SqlCommandBuilder cb = new SqlCommandBuilder();
    public hitbill()
    {
        InitializeComponent();
    }


    private void control()
    {
        //dataGridView_2.DataSource = ds;
        //dataGridView_2.DataMember = "tblfood";
        //totalbox.DataBindings.Add("Text", ds, "tblfood.Price");
    }



    private void hitbill_Load(object sender, EventArgs e)
    {
        SqlConnection cn = new SqlConnection(@"server=people-pc\sqlexpress;integrated security=true;database=nec");
        try
        {
            cn.Open();
            MessageBox.Show("Data base connected");
        }
        catch (Exception)
        {
            MessageBox.Show("Data base connection failed");
            throw;
        }

        cn.Open();
        cm = new SqlCommand("select * from tblfood", cn);
        da = new SqlDataAdapter(cm);
        da.Fill(ds, "tblfood");



    }

    private void dataGridView_2_CellEndEdit(object sender, DataGridViewCellEventArgs e)
    {
        DataGridViewCell currCell = dataGridView_2.CurrentCell;
        string currCellContent = currCell.Value.ToString();

        //    SqlCommand cmd = new SqlCommand("select * FROM tblfood");

        //check whether inputted values are in DB or not

        if (dataGridView_2.CurrentCell.ColumnIndex == 0)
        {

            //        if (!((currCellContent == ???????????????.
            //        if (!((currCellContent == "Beans") || (currCellContent == "Juice"))) //cannot do this because there might be many particulars not just 2 or 3
//And when there are many particulars every time when user inputs value it should be   checked with database and throw an exception/error in case of wrong input.
            //        {
            //            MessageBox.Show("Paticulars not found");
            //            dataGridView_2.CurrentCell.Value = "";
            //        }
            //    }
            //    else if (dataGridView_2.CurrentCell.ColumnIndex ==1)
            //    {
            //         double R = 0.00;
            //        string particular =  dataGridView_2.CurrentRow.Cells[0].Value.ToString().Trim();
            //        if (particular == "Beans")
            //        {
            //            R = Double.Parse(currCellContent) * Properties.Data1.Default.Apple;
            //        }
            //        else if (particular == "Juice")
            //        {
            //            R = Double.Parse(currCellContent) * Properties.Data1.Default.Orange;
            //        }
            //        else
            //        {
            //            R = 0.00;
            //        }
            //        dataGridView_2.CurrentRow.Cells[2].Value = R.ToString();

            //        DataGridViewRowCollection rows = dataGridView_2.Rows;
            //        double total = 0.00;
            //        foreach (DataGridViewRow row in rows)
            //        {
            //            if (!row.IsNewRow)
            //            {
            //                double price = Double.Parse(row.Cells[2].Value.ToString());
            //                total = total + price;
            //            }
            //        }
            //        totalbox.Text = total.ToString();
            //    }
            //}
        }
    }
}
} 

1 个答案:

答案 0 :(得分:0)

好吧,我希望我能正确阅读。

所以你在SQL中有一个充满数据的表吗?两列名为"详情"和"价格"?

你有一个带有Datagridview的Winform,它有相同的列吗?

您还连接了它以便执行查询吗?

我认为这是对的吗?如果是这样,那么就去了。

有几种方法可以轻松快速地通过SQL检查。

所以创建一个简单的Select存储过程。

CREATE PROCEDURE [dbo].[ValidationResult]
@particular as varchar(50)
AS
SELECT Particulars, Price FROM Yourtable
WHERE Particulars = @particular

如此简单的快速查询现在您需要做的就是设置链接。

public DataTable SQL_ValidateCheck(string part)
    {
        try
        {
            DataTable tbl_val = new DataTable();
            using (SqlConnection AutoConn = new SqlConnection(conn32))
            {
                AutoConn.Open();
                using (SqlCommand InfoCommand = new SqlCommand())
                {
                    using (SqlDataAdapter infoAdapter = new SqlDataAdapter(InfoCommand))
                    {
                        InfoCommand.Connection = AutoConn;
                        InfoCommand.CommandType = CommandType.StoredProcedure;
                        InfoCommand.CommandText = "dbo.ValidationResults";
                        InfoCommand.Parameters.AddWithValue("@particular", part);
                        InfoCommand.CommandTimeout = 180;

                        infoAdapter.Fill(tbl_val );
                        AutoConn.Close();
                        return tbl_val ;
                    }
                }
            }
        }
        catch (Exception e)
        {
            //MessageBox.Show("Error in connection :: " + e);

            return tbl_val ;
        }
    }

现在您有一个包含验证选择查询结果的表。

您需要做的最后一件事就是使用它。

private void Check_Val()
{
    DataTable myTable = new DataTable();
    myTable = SQL_ValidateCheck(mygrid.CurrentSelection.Cells[0].Value.ToString());
    //Iterate the table for the result, maybe use an if(mytable == null) or something
}

可能在您的网格中使用此方法,完全取决于您。 语法可能不正确,最近一直在使用Telerik,所以检查语法,但你应该明白这个想法。