gpt4 book ai didi

c# - 如何在 C# 中从 ComboBox 访问 emp_id 和名称

转载 作者:太空宇宙 更新时间:2023-11-03 12:46:01 25 4
gpt4 key购买 nike

我不知道如何从数据库访问 emp_id 和 emp_name 到 dot net-C# 窗口应用程序的组合框中。我的工作是我想在 comoBox 中显示 EPM 名称,但使用与 emp_name 相关的 emp_id 搜索该配置文件。注意 emp_id 不会只显示 Emp name 会显示...就像 HTML 的组合框...我们存储的地方

<option value="$row[emp_id]">$row[emp_name]</option>

就像我希望在 C# 中这样......怎么可能……

最佳答案

MySQLconnection con =  new MySqlconnection(connection.mySql());
MySqlcommand cmd = MySqlCommand("Select emp_id ,emp_name from Table where emp_name='Sandeep' order by emp_id ASC",con);
MySqlDataAdapter da = new MySqlDataAdapter(cmd);
DataSet ds = new DataSet();
da.Fill(ds);
comboBox1.DataSource = ds.Tables[0];
comboBox1.ValueMember = "emp_id";
comboBox1.DisplayMember = "emp_name";

将您的数据库表加载到数据集“ds”中并使用上面的代码。

关于c# - 如何在 C# 中从 ComboBox 访问 emp_id 和名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37289659/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com