我有一张 3 col 的桌子。viz id,profile_id,plugin_id
.现在可以有多个与单个配置文件关联的插件我如何从数据库中获取与 profile_id 关联的所有插件,当我尝试应用查询时,它来自登录页面中定义的会话变量返回最后一条记录的plugin_id的数据查询如下
SqlCommand cmd1 = new SqlCommand(
"select plugin_id from profiles_plugins where profile_id=" +
Convert.ToInt32(Session["cod"]), con);
SqlDataReader dr1 = cmd1.ExecuteReader();
if (dr1.HasRows)
{
while (dr1.Read())
{
Session["edp1"] = Convert.ToInt32(dr1[0]);
}
}
dr1.Close();
cmd1.Dispose();