我正在尝试在 1:M 双向关联中使用原则 2 坚持到拥有方。由于某些奇怪的原因(至少对我来说很奇怪),我没有将accountId
值放入插入语句中,因此它失败了。我不确定我在这里是否做错了什么。
任何人都可以指出发生了什么。
** 使用 Zend Framework 2 + ubuntu + mysql。
表 tAccounts 键是accountId
并且该表通过外键连接accountId
到 tAccountPasswordReset
(拥有方)。
class tAccountPasswordReset {
/**
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
* @ORM\Column(type="integer")
*/
protected $Id;
/** @ORM\Column(type="integer") */
protected $accountId;
.......
.......
/**
* @ORM\ManyToOne(targetEntity="tAccounts", inversedBy="accountpasswordreset")
* @ORM\JoinColumn(name="accountId", referencedColumnName="accountId")
**/
private $accounts;
(反面)
class tAccounts {
/**
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
* @ORM\Column(type="integer")
*/
protected $accountId;
/** @ORM\Column(type="string") */
…………
/** @ORM\OneToMany(targetEntity="tAccountPasswordReset", mappedBy="accounts") */
private $accountpasswordreset;
public function __construct() {
/** Get the dependence rowset from the tAccountPasswordReset */
$this->accountpasswordreset = new ArrayCollection();
}
在 tAccountPaswordReset 中插入一行(我对 accountId 不为 null 持肯定态度)
private function setResetToken($accountid) {
try {
$token = uniqid().uniqid(); /** Generate a unique token */
$newReset = new \Entity\Tables\tAccountPasswordReset();
$newReset->accountId = $accountid;
$newReset->resetToken = $token;
$this->entityManager->persist($newReset);
$this->entityManager->flush();
return $token;
} catch (Exception $e) {
throw $e;
}
}
(结果)
An exception occurred while executing '
INSERT INTO tAccountPasswordReset (accountId, resetToken, createTime, expTime)
VALUES (?, ?, ?, ?)' with params [null, "5273f94bd75f15273f94bd7641", "2013-11-01 14:56:11", "2013-11-02 14:56:11"]: SQLSTATE[23000]:
Integrity constraint violation: 1048 Column 'accountId' cannot be null