2011-03-25 66 views

回答

2

在大多數SQL中,您將引用',將其加倍爲''。但是afaik你必須在SOQL中用\來逃避它 - 所以你在你的測試用例中檢查'shaquel o\'Neil'

我檢查了它 - 正如我想的那樣,在SOQL中你用\逃脫。這裏是所有SOQL,特殊字符的列表:

\n New line 
    \r Carriage return 
    \t Tab 
    \b Bell 
    \f Form feed 
    \" One double-quote character 
    \' One single-quote character 
    \\ Backslash 

(來源:Quoted String Escape Sequences

相關問題