我在执行 Doctrine DQL 查询时遇到问题。这是它给我的错误。
Doctrine\Common\Annotations\AnnotationException: [Syntax Error] Expected PlainValue,
got 'integer' at position 13 in property Base\Session::$lifetime.
我的代码如下所示:
$query = $em->createQuery("SELECT s FROM Base\Session s WHERE s.session = \"$id\"");
其中 $id 是当前 session_id。我的模型看起来像:
namespace Base;
/** @Entity @Table(name="session") */
class Session extends Skeleton {
/**
* @Id @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
*/
protected $id;
/** @Column(length=32) */
protected $session;
/** @Column(type=integer) */
protected $lifetime;
/** @Column(type=integer) */
protected $modified;
/** @Column(type="text") */
protected $data;
}