我正在尝试运行此代码
public long getTopicCountWithTag(String tag)
{
long count;
query = " SELECT count(*) FROM [DB_us2].[dbo].[discns] where tags like '%@tags%'";
try
{
com = new SqlCommand(query, con);
com.Parameters.AddWithValue("@tags", tag);
con.Open();
sdr = com.ExecuteReader();
sdr.Read();
count= sdr.GetInt32(0);
}
catch (Exception e)
{
count = -1;
throw e;
}
finally
{
con.Close();
}
return count;
}
它的输出0
。因此,我尝试找出问题所在并在管理工作室上运行示例查询,但输出与其给出的不同1
。在尝试了所有排列组合之后,我认为问题在于该语句com.Parameters.AddWithValue("@tags", tag);
可能@tags
不会在查询中被替换。