gpt4 book ai didi

symfony - Doctrine 查询上的语法错误 (Symfony2)

转载 作者:行者123 更新时间:2023-12-02 13:09:00 24 4
gpt4 key购买 nike

我在此查询中遇到语法错误:

protected function _getimsg($id)
{
$imsgRepository = $this->getDoctrine( )->getRepository( 'DonePunctisBundle:Imsg' );
$imsg = $imsgRepository->findOneBy(array('to' => $id, 'read' => 0 ));
if($imsg) {
$em = $this->getDoctrine()->getEntityManager();
$imsg->setRead('1');

$em->persist( $imsg );
$em->flush( );

return $imsg->getContent();
} else {
return '';
}

}

imsg 实体

<?php

namespace Done\PunctisBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
* Imsg
*
* @ORM\Table(name="imsg")
* @ORM\Entity
*/
class Imsg
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;

/**
* @var string
*
* @ORM\Column(name="to", type="string", length=25)
*/
private $to;

/**
* @var string
*
* @ORM\Column(name="content", type="string", length=255)
*/
private $content;

/**
* @var integer
*
* @ORM\Column(name="read", type="integer", length=1)
*/
private $read;

/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}

/**
* Set To
*
* @param string $to
* @return Page
*/
public function setTo($to)
{
$this->to = $to;

return $this;
}

/**
* Get to
*
* @return string
*/
public function getTo()
{
return $this->to;
}

/**
* Set content
*
* @param string $content
* @return Page
*/
public function setContent($content)
{
$this->content = $content;

return $this;
}

/**
* Get content
*
* @return string
*/
public function getContent()
{
return $this->content;
}

/**
* Set read
*
* @param integer $read
* @return Imsg
*/
public function setRead($read)
{
$this->read = $read;

return $this;
}

/**
* Get read
*
* @return integer
*/
public function getRead()
{
return $this->read;
}

}

错误输出

An exception occurred while executing 'UPDATE imsg SET read = ? WHERE id = ?' with params {"1":"1","2":1}:

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'read = '1' WHERE id = 1' at line 1

有什么想法吗?

最佳答案

来自MySQL手册:http://dev.mysql.com/doc/refman/5.5/en/reserved-words.html - READ 是保留字。我猜这就是您收到语法错误的原因。

Doctrine 可以自动为您引用列名:

<?php
/** @Column(name="`number`", type="integer") */
private $number;

向列名称添加反引号 - 取自 http://docs.doctrine-project.org/en/latest/reference/basic-mapping.html#quoting-reserved-words

关于symfony - Doctrine 查询上的语法错误 (Symfony2),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14437031/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com