0
我有以下的Propel條件:使用的Propel addCond檢查條目是否是空
->addCond('cond3', 're.max_person_count', Criteria::ISNULL)
這產生以下錯誤:Invalid text representation: 7 ERROR: invalid input syntax for integer: „NULL「
經仔細檢查,似乎生成的SQL是以下:
... (re.max_person_count=:p3 OR ...
代替期望的:
... (re.max_person_count IS NULL OR ...
爲什麼Propel試圖插入一個值,當我選擇的Criteria
是ISNULL
?我究竟做錯了什麼?