sql语句中出现非法字符单引号怎么办?

我们就把一个单引号替换成两个单引号.

string.Format(" itempath like '{0}%' and ItemType='1' and deep='{1}' ", dr["itempath"].ToString().Replace("'", "''"), Convert.ToInt32(dr["deep"]) + 1);


 

你可能感兴趣的:(sql语句中出现非法字符单引号怎么办?)