我有一个用于 where 子句的字符串,但该字符串包含引号字符 (')
例子:
SELECT * FROM CsCustomer WHERE Name ='SA'MIR LUBIS'
我从 sql server 得到错误。有什么建议么?
我用它将结果显示到表格单元格中
c = new TableCell();
c.Text = Db.SingleString("SELECT Unit FROM cscustomer WHERE Name='"+ r.Name +"'");
tr.Cells.Add(c);