1

您好已经设置了一个带有表状态和 StoreLocations 的数据库。我为两者创建了实体。以及 RESTful 服务。在我的本地计算机上发布新位置时,一切正常。

我已将我的项目部署到另一台服务器,当我尝试在这台机器上发布新位置时,我收到以下错误

Code: 23000 
Message: SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`vitanica`.`StoreLocation`, CONSTRAINT `storelocation_ibfk_1` FOREIGN KEY (`state_id`) REFERENCES `state` (`id`))
File: /home/audioglobe.com/zend/vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php
Line: 131 

我不明白为什么这会在一台机器上而不是另一台机器上工作。提前感谢您对这个问题的任何想法!

这是我的表:

mysql> show create table StoreLocation

| StoreLocation | CREATE TABLE `StoreLocation` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) DEFAULT NULL,
`address` varchar(80) DEFAULT NULL,
`city` varchar(80) DEFAULT NULL,
`state_id` int(11) DEFAULT NULL,
`zip` varchar(12) DEFAULT NULL,
`phone` varchar(20) DEFAULT NULL,
`lat` float(10,6) DEFAULT NULL,
`lng` float(10,6) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `state` (`state_id`),
CONSTRAINT `storelocation_ibfk_1` FOREIGN KEY (`state_id`) REFERENCES `state` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 |

mysql> show create table State

| State | CREATE TABLE `State` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(10) NOT NULL,
`state` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=latin1 |

还有来自我的实体的片段:

/** @Entity */ 
class State
{
  ....
    /** @OneToMany(targetEntity="StoreLocation", mappedBy="state") */
    private $stores;
}

/** @Entity @HasLifecycleCallbacks*/
class StoreLocation
{
    /**
    * @ManyToOne(targetEntity="State", inversedBy="id")
    */
    private $state;
}
4

2 回答 2

3

似乎 fk 失败了,因为 mysql 在生产中区分大小写。表名State虽然是引用的约束state(id)。我将所有表名更改为小写,并将该属性添加@Table('state')到我的实体中。现在一切都按预期工作!谢谢你们的帮助!

于 2012-09-19T23:22:05.240 回答
0

约束的要点是,在 内StoreLocation,你不能有一个state_id不存在于State表中的 a。

您是否在State表格中填写了完整的状态列表?

于 2012-09-19T20:39:33.063 回答