gpt4 book ai didi

c# - 使用 C# 在 asp.net 中的 sql 查询中获取错误

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

我在 C# 中使用这个 sql 查询

select t.testname,t.totalque,r.testdate,r.score 
from test t, result r
where t.testid=r.testid
and r.login='vsdep980'

但它显示错误是

invalid column name 'vsdep980'

现在 vsdep980 是存储在 login 列中的值,但它显示此类错误的原因。

现在我的代码是

SqlCommand cmd = new SqlCommand("select t.testname,t.totalque,r.testdate,r.score from test t, result r where t.testid=r.testid and r.login=vsdep980", con);
con.Open();
int c = Convert.ToInt32(cmd.ExecuteScalar());
con.Close();
if (c > 0)
{
Response.Write("<br><br><h1 class='head1'> You have not given any quiz</h1>");
Response.End();
}
SqlDataAdapter adp = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
adp.Fill(ds);
DataTable dt = ds.Tables[0];
DataRow dr = null;
Response.Write("<table border='1' align='center'><tr class='style2'><td width='300'>Test Name </td><td> Total<br> Question </td><td> Date </td><td> Score </td></tr>");
foreach (DataRow dr1 in dt.Rows)
{
dr = dr1;
Response.Write("<tr class='style8'><td> "+dr[0]+" </td><td align='center'> "+dr[1]+" </td><td align='center'> "+dr[2]+" </td><td align='center'>"+dr[3]+" </td></tr>");
}
Response.Write("</table>");

错误信息图片

enter image description here

请帮帮我。

谢谢。

最佳答案

1- 不要使用旧连接。

Bad habits to kick : using old-style JOINs

2- 在查询中使用参数。

A parameterized query is a query in which placeholders are used for parameters and the parameter values are supplied at execution time. The most important reason to use parameterized queries is to avoid SQL injection attacks.

您的查询应该是:

SqlCommand cmd = new SqlCommand("select t.testname,t.totalque,r.testdate,r.score 
from test t, result r where t.testid=r.testid and r.login='vsdep980'", con);

您错过了引号 '',因此 vsdep980 将充当列而不是值。

你的查询应该是这样的:

SELECT T.testname,
T.totalque,
R.testdate,
R.score
FROM test T JOIN result R ON T.testid = R.testid -- Use the new style instead
WHERE R.login = 'vsdep980';

关于c# - 使用 C# 在 asp.net 中的 sql 查询中获取错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47316680/

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