jschrab-lc

Results 2 comments of jschrab-lc

If one DID want this sort of behavior (continuous deletes), then _minimally_ `hist_time` should be an indexed field. This would slow down inserts/"writes" but I think even for a cron...

I think the list of characters needing escaping is much shorter than that: https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_select_quotedstringescapes.htm?search_text=escape I ended up using this: ```php function soql_string_literal($str) { $characters = array('"','\'' ,'\\' ,'_' ,'%'); $replacement...