Doctrine 2 PlainValue expected

隐身守侯 提交于 2019-12-05 00:23:56
beberlei

You have two errors in this:

  1. You have to double quote your annotations, i.e. @Column(type="integer") not @Column(type=integer). Doctrine\Common\Annotations\AnnotationException is thrown when your mapping is wrong. This has nothing to do with the query.

  2. Your query should use prepared statements, i.e.

    $query = $em->createQuery("SELECT s FROM Base\Session s WHERE s.session = ?1"); $query->setParameter(1, $id);

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!