4

在搜索时,我想出了很多人有类似问题的结果,但它们总是与关联错误有关。我正在尝试将一个简单的文本字段添加到数据库中的表中,并且,对于我的生活,我无法弄清楚这次有什么不同 - 当我之前多次没有问题地完成它时。

我已经为 4 个不同的实体添加了一个“record_checksum”字段,但我将只使用一个,这里是为了简化示例。(所有 4 个都发生相同的错误)。

这是我的 Entity\Cloud.php 文件的示例,底部添加了“ record_checksum ”字段:

use Doctrine\ORM\Mapping as ORM;

namespace Entity;

/**
 * Entity\Cloud
 *
 * @orm:Table(name="cloud")
 * @orm:Entity
 * @orm:HasLifecycleCallbacks
 */
class Cloud
{
    /**
     * @var integer $id
     *
     * @orm:Column(name="id", type="integer", length="13")
     * @orm:Id
     * @orm:GeneratedValue(strategy="IDENTITY")
     */
    private $id;

    /**
     * @var float $position_x
     *
     * @orm:Column(name="position_x", type="float", length=9)
     */
    private $position_x;

    /**
     * @var float $position_y
     *
     * @orm:Column(name="position_y", type="float", length=9)
     */
    private $position_y;

    /**
     * @var string $commit_group
     *
     * @orm:Column(name="commit_group", type="string", length=32, nullable=true)
     */
    private $commit_group;

    /**
     * @var string $commit_key
     *
     * @orm:Column(name="commit_key", type="string", length=13, nullable=true)
     */
    private $commit_key;

    /**
     * @var string $record_checksum
     *
     * @orm:Column(name="record_checksum", type="string", length=32, nullable=true)
     */
    private $record_checksum;

该类的其余部分是 getter/setter 方法,因此我将其省略。要查看整个实体文件,我将其放在 pastebin ( http://pastebin.com/9LheZ6A1 ) 上。几周前我刚刚添加的“commit_key”,没有任何问题。

现在我更新架构:

$ doctrine orm:schema-tool:update --dump-sql
ALTER TABLE cloud ADD record_checksum VARCHAR(32) DEFAULT NULL;
$ doctrine orm:schema-tool:update --force
Updating database schema...
Database schema updated successfully!

我验证了这个字段现在存在于数据库表中。

但是,当我像这样运行一个简单的 DQL 查询时:

$dql =  "SELECT c.id AS id, c.commit_key AS key, c.record_checksum AS checksum ".
                "FROM Entity\\Cloud c WHERE c.commit_group = :commit_group";

我得到错误:

 [Semantical Error] line 0, col 42 near 'record_checksum': Error: Class Entity\Cloud has no field or association named record_checksum, 

我已经把头撞在墙上有一段时间了。我确定我忽略了一些非常愚蠢的事情。任何帮助是极大的赞赏!-缺口

4

2 回答 2

5

尝试:

  1. 清除任何可能包含配置或 PHP 代码的缓存。
  2. 如果第一个解决方案不起作用,请重命名字段。
于 2012-05-23T13:14:56.013 回答
1

转到有Entity问题的并检查变量名称。如果它类似于TESTVar,并且您尝试testVar在查询中使用,它将给您错误,即变量不存在于Entity.

将查询更改为使用TESTVar而不是testVar,它将起作用。

于 2015-10-08T21:23:29.100 回答