替换回车的SOQL API

时间:2018-10-16 12:14:47

标签: sql soql azure-data-factory-2

我正在使用Azure数据工厂从Salesforce API连接器提取数据。问题在于某些数据包含回车和换行符。

通常我会使用#remove www RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L,NE] #remove last slash #RewriteCond %{REQUEST_FILENAME} !-d #RewriteRule ^(.+)/$ /$1 [NE,R=301,L] #redirect http -> https #RewriteCond %{HTTPS} !=on #RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L] #redirect file/dir to index.min.php?pagina=$1 RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.min.php?pagina=$1 [L] ,但似乎无法使用SOQL。

实际查询失败,尽管如果我指定引号也可以替换字符,但我也尝试了各种转义字符'''\ /,但似乎无济于事

有人知道剥离回车和换行符的方法吗?

谢谢。

0 个答案:

没有答案