burkybang
01/27/2022, 4:13 PMIf your SuiteApp uses SuiteQL, are any of your queries use both SQL-92 and Oracle SQL?(Yes, the question has that weird wording) How can I tell if my SuiteQL is using both SQL-92 and Oracle SQL or not? I wasn't aware there's a difference.
Alan Fitch
01/27/2022, 5:15 PMIf your SuiteApp uses SuiteQL, are any of your queries allowed to use both SQL-92 and Oracle SQL?
I'm pretty sure the answer is no.
Marc Reicher
01/27/2022, 7:10 PMMarc Reicher
01/27/2022, 7:11 PMMarc Reicher
01/27/2022, 7:12 PMAlan Fitch
01/27/2022, 7:13 PMMarc Reicher
01/27/2022, 7:13 PMAlan Fitch
01/27/2022, 7:18 PMtry { return evaluatewithsql92(sql)}
catch { return evaluatewithoracle(sql)}
catch(e) { return "oops"}
Alan Fitch
01/27/2022, 7:24 PM