如何从 Comp 表中获取 company_name 的值并将其存储在组合框中?
这是我从数据库中获取值并将其存储在组合框中的初始代码:
string Sql = "select company_name from JO.dbo.Comp";
SqlConnection conn = new SqlConnection(connString);
SqlCommand cmd = new SqlCommand(Sql, conn);
cmd.CommandType = CommandType.StoredProcedure;
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
da.Fill(ds);
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
comboBox1.Items.Add(ds.Tables[0].Rows[i][0].ToString());
它指出da.fill(ds)
并说"Could not locate entry in sysdatabases for database 'select company_name from JO'
。未找到具有该名称的条目。确保名称输入正确。”
希望得到您的回复谢谢!