检索数据库值并使用SQLDataReader在表单上显示它们

时间:2015-10-29 13:16:36

标签: c# sql database listbox sqldatareader

我正在尝试从数据库中检索数据并在表单上显示它们;但我的代码没有工作......我没有错误,从逻辑上讲它似乎有效(对我来说)所以我无法弄清楚我哪里出错了。这就是我需要你帮助的地方!

private void tableListBox_SelectedIndexChanged(object sender, EventArgs e)
{

    string constring = @"Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\IncomerDefault.mdf;Integrated Security=True;Connect Timeout=30";
    string Query = "SELECT * FROM [Table] WHERE Default_Name = '" + tableListBox.SelectedValue + "'";
    SqlConnection con = new SqlConnection(constring);
    SqlCommand cmd = new SqlCommand(Query, con);
    SqlDataReader Reader;
    try
    {
        con.Open();
        Reader = cmd.ExecuteReader();

        while (Reader.Read())
        {
                textBox1.Text = Reader.GetValue(2).ToString();
                comboBox1.Text = Reader.GetValue(3).ToString();
                comboBox3.Text = Reader.GetValue(4).ToString();
                textBox2.Text = Reader.GetValue(6).ToString();
                comboBox2.Text = Reader.GetValue(7).ToString();
                comboBox4.Text = Reader.GetValue(8).ToString();
        }
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
    con.Close();
}

' tableListBox'将填充列' Default_Name'中的所有值。我想要它,以便当' Default_Name'从列表框中选择,它在文本框和组合框中显示与数据库中该行对应的值。

任何和所有帮助将不胜感激。感谢。

2 个答案:

答案 0 :(得分:0)

我将首先更改您的设计,并建议您可以查看使用数据表,然后只检索数据表中的行。

private void tableListBox_SelectedIndexChanged(object sender, EventArgs e)
{
    private DataTable dataTable;
    string constring = @"Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\IncomerDefault.mdf;Integrated Security=True;Connect Timeout=30";
    string Query = "SELECT * FROM [Table] WHERE Default_Name = '" + tableListBox.SelectedValue + "'";
    SqlConnection con = new SqlConnection(constring);
    SqlCommand cmd = new SqlCommand(Query, con);
    try
    {
         con.Open();

         SqlDataAdapter da = new SqlDataAdapter(cmd);
         da.Fill(dataTable);

         foreach(DataRow row in dataTable.Rows)
         {
              textBox1.Text = row[2].ToString();
              comboBox1.Text = row[3].ToString();
              comboBox3.Text = row[4].ToString();
              textBox2.Text = row[6].ToString();
              comboBox2.Text = row[7].ToString();
              comboBox4.Text = row[8].ToString();
        }
        da.Dispose();
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
    con.Close();
 }

我通常发现DataTables比通过实际阅读器循环更可靠。当然,这假设有返回的数据。还可以尝试将select语句更改为此

string Query = "SELECT * FROM [Table]"

如果可行,那么问题可能是

  1. 没有指定值的默认名称或
  2. tableListBox.SelectedValue未返回任何值,在这种情况下,请查看列表框中的选定值

答案 1 :(得分:0)

感谢Takarii的帮助。我想出了让它发挥作用的人。

private void tableListBox_SelectedValueChanged(object sender, EventArgs e)
{
    string constring = @"Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\IncomerDefault.mdf;Integrated Security=True;Connect Timeout=30";
    string Query = "SELECT * FROM [Table] WHERE ID = '" + tableListBox.SelectedIndex.ToString() + "'";
    SqlConnection con = new SqlConnection(constring);
    SqlCommand cmd = new SqlCommand(Query, con);
    SqlDataReader Reader;
    try
    {
        con.Open();
        Reader = cmd.ExecuteReader();

        while (Reader.Read())
        {
            textBox1.Text = Reader.GetValue(2).ToString();
            comboBox1.Text = Reader.GetValue(3).ToString();
            comboBox3.Text = Reader.GetValue(4).ToString();
            textBox2.Text = Reader.GetValue(6).ToString();
            comboBox2.Text = Reader.GetValue(7).ToString();
            comboBox4.Text = Reader.GetValue(8).ToString();
        }
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
    con.Close();
}

首先我将void更改为'SelectedValueChanged',然后将连接Query中的'WHERE'更改为与所选值关联的行索引。

感谢大家的帮助!