zoukankan      html  css  js  c++  java
  • NSPredicate查询日期的问题

    查询日期的时候日期可以根据参数传进去,但不能在字符串中传参后在作为查询条件

    简单比较以下两段代码

        NSDate* date1=[NSDate date];
        NSDate* date2=date1;

    request.predicate=[NSPredicate predicateWithFormat:@"studyDate>=%@ AND studyDate<=%@",date1,date2];
        NSDate* date1=[NSDate date];
        NSDate* date2=date1;
        _SearchString=[[NSString alloc]initWithFormat:@"studyDate>=%@ AND studyDate<=%@",date1,date2];
        request.predicate=[NSPredicate predicateWithFormat:_SearchString];

    第一段代码中直接使用传参生成nspredicate,而第二段是经过了一个字符串,然后传给nspredicate,第一段代码查询没有问题,第二段代码查询就会报以下的错误

    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unable to parse the format string "studyDate>=2014-04-25 07:13:37 +0000 AND studyDate<=2014-04-25 07:13:37 +0000"'

    但一般情况下查询数据库不可能是只查询一个条件,好多情况下是拼接字符串来得到一个总的查询条件,在sql语句中经常这样做,但这在谓词中不可以,我们能做的就是把所有的查询条件作为参数传到谓词中

  • 相关阅读:
    逆元(费马小定理求法)
    CodeForces
    lower_bound and upper_bound
    HDU 4825 Xor Sum
    1030: [JSOI2007]文本生成器
    1070: [SCOI2007]修车
    agc 027 B
    P2664 树上游戏
    CF 314 E. Sereja and Squares
    4237: 稻草人
  • 原文地址:https://www.cnblogs.com/dongweiq/p/3688857.html
Copyright © 2011-2022 走看看