如何在数据网格视图中显示数据

How can I display data in data grid view

我有一个组合框,可以在其中显示数据库中 table 的所有名称。现在我找不到通过在组合框中选择 table 名称来在数据网格视图中显示 table 的所有内容的方法。目前我有 2 个 table,我可以通过在组合框中选择它并在数据网格视图中显示其值来进行选择。

我想要实现的是,通过在组合框中选择 table 名称,我的数据网格视图将根据 table 名称显示 table 的值在我的组合框中被选中

这是我的代码:

private void samples_Load(object sender, EventArgs e)
{
    MySqlConnection con = new MySqlConnection(conn);
    try
    {
        con.Open();
        MySqlCommand sqlCmd = new MySqlCommand();

        sqlCmd.Connection = con;
        sqlCmd.CommandType = CommandType.Text;

        sqlCmd.CommandText = "select table_name from information_schema.tables where table_schema = 'attenddb'";

        MySqlDataAdapter sqlDataAdap = new MySqlDataAdapter(sqlCmd);

        DataTable dtRecord = new DataTable();
        sqlDataAdap.Fill(dtRecord);
        comboBox1.DataSource = dtRecord;
        comboBox1.DisplayMember = "TABLE_NAME";
        con.Close();
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

private void button1_Click(object sender, EventArgs e)
{
    try
    {
        string query2 = "select table_name from ['"+ comboBox1.Text + "']";
        MySqlConnection con2 = new MySqlConnection(conn);
        MySqlCommand com2 = new MySqlCommand(query2, con2);
        MySqlDataAdapter myadapt = new MySqlDataAdapter();
        myadapt.SelectCommand = com2;
        DataTable dtable = new DataTable();
        myadapt.Fill(dtable);
        dataGridView1.DataSource = dtable;
    }
    catch
    {
        MessageBox.Show("Error Loading data");
    }
}

您必须 select select 编辑的 table 中具有 * 的所有列。

string query2 = "select * from ["+ comboBox1.Text + "]";

或使用字符串插值:

string query2 = $"select * from [{comboBox1.Text}]";

另外,不要在 table 名称周围使用单引号(您已经有了方括号),因为您需要的是直接名称而不是字符串文字。

不要使用方括号 [] 和单引号。

string query2 = "select columnname from " + comboBox1.Text+ "";

您的代码存在一些问题:

  1. 我们可以使用 "select * from " + comboBox1.Text;从数据库中获取数据。
  2. 我们需要先打开连接才能访问数据库

如果想在数据网格视图中显示数据,可以参考以下代码:

private void Form1_Load(object sender, EventArgs e)
    {
        comboBox1.Items.Add("table_name1");
        comboBox1.Items.Add("table_name2");
    }

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
    {
        string query2 = "select * from " + comboBox1.Text;
        MySqlConnection con2 = new MySqlConnection(conn);
        con2.Open();
        try
        {
            MySqlCommand com2 = new MySqlCommand(query2, con2);
            MySqlDataAdapter myadapt = new MySqlDataAdapter();
            myadapt.SelectCommand = com2;
            DataTable dtable = new DataTable();
            myadapt.Fill(dtable);
            dataGridView1.DataSource = dtable;
        }
        catch
        {
            MessageBox.Show("Error Loading data");
        }
        finally

        {
            if (con2.State == ConnectionState.Open)

            {
                con2.Close();
            }
        }
    }