5

我正在尝试运行此代码

 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不会在查询中被替换。

4

3 回答 3

10

我认为您的查询应该是

string query = "SELECT count(*) FROM [DB_us2].[dbo].[discns] where tags like @tags";

并将通配符添加到参数中

com.Parameters.AddWithValue("@tags", "%" + tag + "%");
于 2013-10-25T07:56:47.867 回答
0

应该

 AddWithValue("@tags", "%" + tag + "%");

您必须将 %s 带入 AddWithValue

于 2013-10-25T08:08:25.757 回答
0
query = " SELECT count(*) FROM [DB_us2].[dbo].[discns] where tags like '%'+ @tags + '%'";

让一切保持原样。

于 2013-10-25T08:17:36.507 回答