用表中的列填充ComboBox到另一个组合框 - c#

时间:2018-03-07 11:29:18

标签: c# sql combobox

我遇到了一些问题,通常不是错误,但是没有显示给我comboBox

这是我的代码并尝试了多次,但它没有显示。

using (SqlConnection con2 = new SqlConnection(@"Data Source=USER-PC; Initial Catalog=StudentDB; Integrated Security=True;"))
{
    con2.Open();
    using (SqlCommand com2 = new SqlCommand("SELECT * FROM Northwind.INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = N'"+comboBox3.Text+"' ", con2))
    {
        using (SqlDataReader reader2 = com2.ExecuteReader())
        {
            comboBox4.Items.Clear();
            while (reader2.Read())

            {
                comboBox4.Items.Add((string)reader2["COLUMN_NAME"]);
            }

        }
    }
}

我搜索了类似的主题,但它仍然不适合我..

知道上面的代码有什么问题吗?

0 个答案:

没有答案