You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
In commit 5381c78curlEscape was removed from rforcecom.query function. Now queries with fail if they contain an ampersand (&). There's something different about how URLencode works compared to curlEscape. Not sure what exactly is different in those two functions, but noting the issue. The query below used to work before commit 5381c78. Now you need to use curlEscape before passing to the function.
query <- "SELECT Id, Name from Account where Name='Sanford & Son'"
rforcecom.query(session=session, soqlQuery=query)
Error in rforcecom.query(session = session, soqlQuery = query) :
MALFORMED_QUERY: A query string has to be specified
The text was updated successfully, but these errors were encountered:
In commit 5381c78
curlEscape
was removed fromrforcecom.query
function. Now queries with fail if they contain an ampersand (&
). There's something different about howURLencode
works compared tocurlEscape
. Not sure what exactly is different in those two functions, but noting the issue. The query below used to work before commit 5381c78. Now you need to usecurlEscape
before passing to the function.The text was updated successfully, but these errors were encountered: