使用数据库c#中的表填充Combobox

时间:2018-03-06 15:17:42

标签: c# sql combobox

如何在数据库中填充combobox表(而不是特定表中的列)。

我已经做过像“数据绑定”这样的常见操作,但是当我运行/调试系统时,组合框中没有任何内容。

这是我的代码:

    private void Form1_Load(object sender, EventArgs e)
    {
        try
        {
            SqlConnection connection = new SqlConnection(@"Data Source=USER-PC;Initial Catalog=StudentDB;Integrated Security=True");

            string selectQuery = "SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE'";
            connection.Open();
            SqlCommand command = new SqlCommand(selectQuery, connection);
            SqlDataReader reader = command.ExecuteReader();
            while (reader.Read())
            {
                comboBox1.Items.Add(reader.GetString("tables"));
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }

    }

有经验的开发人员的帮助吗?

1 个答案:

答案 0 :(得分:1)

您的代码中的列名称错误,READER [“tables”],正确的列名是TABLE_NAME,请尝试以下代码:

using (SqlConnection con = new SqlConnection(strConnect))
{
con.Open();
using (SqlCommand com = new SqlCommand("SELECT * FROM INFORMATION_SCHEMA.TABLES", con))
    {
    using (SqlDataReader reader = com.ExecuteReader())
        {
        myComboBox.Items.Clear();
        while (reader.Read())
            {
            myComboBox.Items.Add((string) reader["TABLE_NAME"]);
            }
        }
    }
}