0

问候程序员,

我的 Windows 窗体中有一个组合框和一些文本框连接到数据库。我的想法是,当组合框的值发生变化时,文本框中的数据也会发生变化。就像我在组合框中选择客户 ID 时一样,文本框将加载客户的数据,例如全名或地址等。但是当我打开表单时,组合框消失并且文本框保持为空。我正在使用 Access 数据库和 Visual Studio 2012 进行编码。这是我的代码..

C#代码

private void comboBox1_SelectedValueChanged(object sender, EventArgs e)
    {
        string pc = Convert.ToString(comboBox1.SelectedValue);
        string sql = "SELECT * FROM Customer WHERE CustomerID="+ pc;
        Data.Customer_Data(sql, pc);

        txtfullname.Text = Data.fullname;
        txtadress.Text = Data.adress;
        txtcity.Text = Data.city;
        txtemail.Text = Data.email;

    }

我的班级叫做数据:

public static string cs = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + Application.StartupPath + "\\Database1.accdb";
public static string fullname = "";
public static string adress = "";
public static string city = "";
public static string email = "";
public static void Customer_Data(string sql, string pc)
    {
            if (pc == "")
            {
                return;
            }

            else
            {
                OleDbConnection oleDbConnection1 = new System.Data.OleDb.OleDbConnection(cs);
                oleDbConnection1.Open();
                OleDbCommand oleDbCommand1 = new System.Data.OleDb.OleDbCommand(sql,oleDbConnection1);
                OleDbDataReader reader = oleDbCommand1.ExecuteReader();

                if (!reader.Read())
                    return;

                fullname = reader["fullname"].ToString();
                adress = reader["adress"].ToString();
                city = reader["city"].ToString();
                email = reader["email"].ToString();


                oleDbConnection1.Close();
            }
    }
4

1 回答 1

-1

您可以尝试以下调试技术之一,看看发生了什么。

  1. 在此行之后Data.Customer_Data(sql, pc);,属性的数据是否正确加载?
  2. 您是否还可以检查是否有对应客户 ID 的数据库值已通过?这样这个条件if (!reader.Read()) return;就不会被执行。
  3. 检查您的页面加载方法(我确信它不会影响组合框的可见性,但嘿,尝试没有害处)。

如果这里提到的这些都不起作用,那么更多的代码可能会有所帮助。

于 2013-04-10T11:44:31.877 回答