获取 System.QueryException:第 1:40 行在字符 '\' 处没有可行的替代方案

发布于 2025-01-14 12:52:47 字数 690 浏览 1 评论 0原文

我使用动态查询来获取数据。下面是我的代码

if(objVal != null){
      sObject obj = Schema.getGlobalDescribe().get(objVal).newSObject();
      if(ConditionVal== null || ConditionVal=='')
     query = 'Select Id From '+objVal+ ' Limit 10000';
        else{
           ConditionVal= String.escapeSingleQuotes(ConditionVal);
           query = 'Select Id From '+selectedObj+' WHERE '+ConditionVal+' LIMIT 10000';
        }      
        List<SObject> objlst = Database.query(query);

,我从 VF 页面获取“objVal”、“ConditionVal”值
示例 objVal = '帐户' ConditionVal = '行业 = '服装'
执行代码后得到这样的查询

Select Id From Account WHERE industry = \'Apparel\' LIMIT 10000

Am using a dynamic query to get data. Below is my code

if(objVal != null){
      sObject obj = Schema.getGlobalDescribe().get(objVal).newSObject();
      if(ConditionVal== null || ConditionVal=='')
     query = 'Select Id From '+objVal+ ' Limit 10000';
        else{
           ConditionVal= String.escapeSingleQuotes(ConditionVal);
           query = 'Select Id From '+selectedObj+' WHERE '+ConditionVal+' LIMIT 10000';
        }      
        List<SObject> objlst = Database.query(query);

Am getting "objVal" , "ConditionVal" value form VF page
Example objVal = 'Account' ConditionVal = 'industry = 'Apparel'
after executing the code am getting the query like this

Select Id From Account WHERE industry = \'Apparel\' LIMIT 10000

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七婞 2025-01-21 12:52:47

更新 ConditionVal 变量的值,如下所示,

ConditionVal = 'Industry = \'Apparel\'';

查询将按预期工作。

update the value of ConditionVal variable as below,

ConditionVal = 'Industry = \'Apparel\'';

the query will work as expected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文