gpt4 book ai didi

c# - 如何在 C# 中从 sql 中检索特定数据?

转载 作者:行者123 更新时间:2023-11-29 16:08:40 24 4
gpt4 key购买 nike

我有一个包含下表的数据库:

users table

我正在尝试获取当前用户名的角色,以便我可以将该人重定向到正确的页面。我尝试使用 if 子句 (acc.u_role == 1),但不幸的是它不起作用。

    public ActionResult Verify(User acc)
{
connectionString();
con.Open();
com.Connection = con;
com.CommandText = "select * from Users where u_username = '"+acc.u_username+"' and u_password ='"+acc.u_password+"'";

dr = com.ExecuteReader();
if (dr.Read())
{
if (acc.u_role == 1) {
con.Close();
return View("AdminHome");
}
else
{
con.Close();
return View("UserHome");
}
}
else
{
con.Close();
return View("Error");
}
}

最佳答案

您在哪里设置 acc.u_role?

看起来您正在读取数据,然后没有使用它。 dr[5] 应包含数据库中的角色

        dr = com.ExecuteReader();
if (dr.Read())
{

if (dr[5] == 1) {
con.Close();
return View("AdminHome");
}

关于c# - 如何在 C# 中从 sql 中检索特定数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55499674/

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