/    Sign up×
Community /Pin to ProfileBookmark

App Data Management – Salesforce vs Parse

Hello,

We are in the midst of building a new app. Salesforce cloud seems to be a viable, more dynamic alternative.

Is there anything that we need parse for that we can’t get from salesforce?

Is anyone familiar with both these platforms?

Thank you!

to post a comment

5 Comments(s)

Copy linkTweet thisAlerts:
@StasMaOct 18.2019 — Salesforce
Copy linkTweet thisAlerts:
@VITSUSAOct 19.2019 — Salesforce
Copy linkTweet thisAlerts:
@StasMaNov 05.2019 — @Jappdeveloper#1439777 Be aware that the SOQL_FIRST and SQL_FIRST parse methods may lead to different behavior for similar queries. This can occur when the driver switches between the two modes when trying to find which query language can support the inputted query. The behavior will be consistent within the same query language, however even small changes to a query can cause the driver to change which language it uses to execute the query, causing different results to be returned.

For example, SOQL and SQL handle comparisons against null values differently. SQL will return an unknown state if a comparison operator (such as = or >) is used with a null value and the result will contain zero rows. SOQL will allow such a comparison and will return results. For example, you issue the query SELECT Name FROM Account WHERE NumberOfEmployees = NULL. This query is valid SOQL, so if you are using the SOQL_FIRST mode the driver executes it in SOQL and returns values containing all non-null values. You then issue the query SELECT Account.Name FROM Account, Contact WHERE Account.Id = Contact.AccountId AND Account.NumberOfEmployees = NULL. This query is not valid SOQL but is valid SQL. The driver executes it in SQL and returns zero values as specified by the SQL specification. Both queries are similar, but the small difference in the query structure results in a different language being used to execute the queries. This changes the results.

If you are expecting a certain behavior, then use either the SOQL_ONLY mode or the SQL_ONLY mode.
Copy linkTweet thisAlerts:
@NogDogNov 05.2019 — Locking this 4-year-old thread....
Copy linkTweet thisAlerts:
@NogDogNov 05.2019 — {"locked":true}
×

Success!

Help @Jappdeveloper spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 4.25,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...