C#ADO.NET参数化查询

时间:2019-01-31 20:08:12

标签: c# .net ado

我有一个T-SQL和查询:

string queryString = @"SELECT AGENT.Number, PERSON.LoginName, AGENT.EnterpriseName FROM Agent AGENT INNER JOIN Person PERSON ON AGENT.PersonID = PERSON.PersonID WHERE LOWER(EnterpriseName) LIKE @entname";

string connStr = null;

try
{
    connStr = ConfigurationManager.ConnectionStrings["DB"].ConnectionString + ToInsecureString(Decrypt(ConfigurationManager.AppSettings["admin"])) + ";";
}
catch (Exception ex)
{
    Logs.WriteMessage("Error while making connStr " + ex.TargetSite + ex.StackTrace + ex.ToString());
}

try
{
    using (SqlConnection connection = new SqlConnection(connStr))
    {
        connection.Open();

        using (SqlCommand command = new SqlCommand(queryString, connection))
        {
            SqlParameter param = new SqlParameter
                    {
                        ParameterName = "@entname",
                        Value = "'%" + agentName + "%'"
                    };
            command.Parameters.Add(param);

            using (SqlDataReader reader = command.ExecuteReader())
            {
                while (reader.Read())
                {
                    login = (string)reader[1];
                    userID = (string)reader[0];
                }
            }
        }

        connection.Close();
    }
}

这不起作用。我没有结果,但是当我在查询中使用值代替@parameter时,我得到了正确的结果。

参数@entname不替换,以值,因此查询失败。请给我一个提示。

当我在断点处停下来并查看查询时,它看起来是:

SELECT AGENT.Number, PERSON.LoginName, AGENT.EnterpriseName 
FROM Agent AGENT 
INNER JOIN Person PERSON ON AGENT.PersonID = PERSON.PersonID 
WHERE LOWER(EnterpriseName) LIKE @entname

所以什么都没有改变。

1 个答案:

答案 0 :(得分:5)

  

参数@entname不会替换为值,因此查询失败。

这不是参数的工作方式。 ['1.0|2.0|9.0', '3.0|11.0', ...]参数标记与匹配的参数值一起留在发送到SQL Server的查询中。

因此,带着这种误解,您引用的参数值就像要粘贴到SQL查询中一样:

@entname

您不应该这样做。代替

Value = "'%" + agentName + "%'"