SQL 全文索引CONTAINS查询包含双引号”

<!-- lang: c# -->
public static string FullTextSpecialSymbols(string strText)
    {
        strText = strText.Trim();
        strText = strText.Replace("\" ","''");

        return strText;
    }

当然中间可以继续追加需要的过滤。

参考 :http://stackoverflow.com/questions/387198/escape-double-quotes-in-sql-2005-2008

posted @ 2015-01-27 01:24  游子善心  阅读(14)  评论(0编辑  收藏  举报  来源