我们如何将symfony3下的日期与oracle数据库进行比较?
$q = $this->createQueryBuilder("u")->leftJoin("u.ru", "r")
->leftJoin("u.emp", "e")
->where("(r.a = 2 or r.a =4) and u.dat > :first and u.dat < :last and e.m=:m")
->orderBy("r.id")
->setParameter("matricule", $personne->getMatricule())
->setParameter("first", $first)
->setParameter("last", $last);
return $q->getQuery()->getResult();
但这不起作用。我有这个错误
常规错误:1861 OCIStmtExecute:ORA-01861:文字与格式字符串不匹配 (分机\ PDO_OCI \ oci_statement.c:148)
答案 0 :(得分:0)
j'ai利用ce https://github.com/beberlei/DoctrineExtensions pour la fonction to_date