c#从DataGridView中的单元格检索数据时获取NullReferenceException

时间:2012-08-02 02:21:17

标签: c# datagridview nullreferenceexception

这是我的代码:

private void CostList_Load(object sender, EventArgs e)
{
    // TODO: This line of code loads data into the 'lSEStockDataSet.CostPrice' table. You can move, or remove it, as needed.
    this.costPriceTableAdapter.Fill(this.lSEStockDataSet.CostPrice);

    con = new System.Data.SqlClient.SqlConnection();
    con.ConnectionString = "Data Source=tcp:SHEN-PC,49172\\SQLEXPRESS;Initial Catalog=LSEStock;Integrated Security=True";
    con.Open();

    DataGridView datagridview1 = new DataGridView();
    String retrieveData = "SELECT CostID, SupplierName, CostPrice FROM CostPrice WHERE PartsID ='" + textBox1.Text + "'";
    SqlCommand cmd = new SqlCommand(retrieveData, con);
    int count = cmd.ExecuteNonQuery();
    SqlDataReader dr = cmd.ExecuteReader();
    DataTable dt = new DataTable();
    dt.Load(dr);
    dataGridView1.DataSource = dt;
    con.Close();

}

private void button1_Click(object sender, EventArgs e)
{

    if (dataGridView1.Rows.Count > 0)
    {   
        int nRowIndex = dataGridView1.Rows.Count-1;


        if (dataGridView1.Rows[nRowIndex].Cells[2].Value != null)
        {
            textBox2.Text = Convert.ToString(dataGridView1.Rows[nRowIndex].Cells[2].Value);
        }
        else
        {
            MessageBox.Show("NULL");
        }
    }
}

当我按下按钮时显示NULL,这里有什么问题?我有3列,我想获取最后一行第3列的数据,但它显示NULL但指定单元格中有数据。谁知道如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

不要从行计数中减去一个,而是尝试减去两个。减去一个就是给你“add”行的从零开始的索引,它确实在最后一列中有一个空值。

    int nRowIndex = dataGridView1.Rows.Count-2;

通过从计数中减去2,您将获得最后一行的从零开始的索引,其中包含实际数据。我认为这就是你要找的东西。

另外,您可能希望参数化SQL查询,如下所示:

String retrieveData = "SELECT CostID, SupplierName, CostPrice FROM CostPrice WHERE PartsID = @inPartsID";
SqlCommand cmd = new SqlCommand(retrieveData, con);
cmd.Parameters.Add(new SqlParameter("@inPartsID", textBox1.Text));

这将使您的查询更可靠(如果textBox1中有单引号字符会发生什么)并且您的数据更安全(恶意行为者可以使用SQL注入来对您的数据库造成伤害或从中获取数据不应该)。