4

在使用 PHP Doctrine Project 插入新记录后,我无法获取 id。

在没有父表(没有外键)的表中插入新记录时不会出现问题。但是,当在这里插入相关记录时,问题就来了,我只得到了在我的情况下没用的父 id。

PHP代码示例:

$city = new City();
$city->name = "Baghdad";
$city->country_id = 6;
$city->save();
print_r($city->identifier());
exit;

输出是:

Array
(
    [id] => 
    [country_id] => 6
)

为什么ID为空!,成功插入行的地方!。我需要这个来做更多基于city.id的插入,就像另一个以这个城市为父的区域一样。

注意使用$city->id导致此错误的原因: Warning: Invalid argument supplied for foreach() in Doctrine/Record.php on line 1151

数据库 SQL 转储:

CREATE TABLE IF NOT EXISTS `country` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(64) collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=7 ;


CREATE TABLE IF NOT EXISTS `city` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(64) collate utf8_unicode_ci NOT NULL,
  `country_id` int(11) NOT NULL,
  PRIMARY KEY  (`id`,`country_id`),
  KEY `fk_city_country` (`country_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=11 ;


ALTER TABLE `city`
  ADD CONSTRAINT `fk_city_country` FOREIGN KEY (`country_id`) REFERENCES `country` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION;

顺便说一句:我正在使用该Doctrine::generateModelsFromDb()方法生成 ORM 模型类。

PS:使用Doctrine 1.2.1版本,mysql:innodb 5.0.75-0ubuntu10.2,php 5.2.6-3ubuntu4.5。

4

2 回答 2

5

一位同事发现了解决方案。就是因为这行代码:

PRIMARY KEY  (`id`,`country_id`),

我用这个:

PRIMARY KEY  (`id`),

它工作正常。

我猜这是一个 MySQL 问题。不是,这是我的表格设计中的错误。

于 2010-01-16T11:11:30.210 回答
0

是否print_r($city->get('id'));持有更多信息?

于 2010-01-16T10:57:43.680 回答