Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想转义与 Oracle 中的 LIKE 运算符一起使用的字符串中的所有字符?这可能吗?如果不能,可以用 C# 完成吗?
到目前为止,我有代码:
questions.RowFilter = "question_text LIKE '" + _questionIdToTextMappings[id].ToString() + "'";
但是,当数组值中有方括号时它会中断,有没有办法将数组中的值纯粹视为字符串并忽略所有特殊字符,如方括号、百分号等?使用 Oracle 还是 C#?