无法获得在 Propel2 中工作的外键

Posted

技术标签:

【中文标题】无法获得在 Propel2 中工作的外键【英文标题】:Can't get foreign key to work in Propel2 【发布时间】:2015-06-06 11:29:29 【问题描述】:

我正在尝试将 Propel2 用于我的网络应用程序。我只是想不通为什么我的外键连接不起作用。它与 Book-example 非常相似,并且运行良好。

我的 schema.xml:

<database name="default" defaultIdMethod="native"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:noNamespaceSchemaLocation="http://xsd.propelorm.org/1.6/database.xsd">

    <!-- Table Structure: 'Games' -->
    <table name="games" phpName="Game">
        <column name="game_id" type="INTEGER" required="true" sqlType="int(11) unsigned" primaryKey="true" autoIncrement="true"/>
        <column name="game_name" type="VARCHAR" size="150" required="true"/>
        <unique name="UNIQUE_game_name">
            <unique-column name="game_name" size="150" />
        </unique>
    </table>

    <!-- Table Structure: 'Teams' -->
    <table name="teams" phpName="Team">
        <column name="team_game" type="INTEGER" required="true" sqlType="int(11) unsigned"/>
        <column name="team_id" type="INTEGER" required="true" sqlType="int(11) unsigned" primaryKey="true" autoIncrement="true"/>
        <column name="team_name" type="VARCHAR" size="150" required="true"/>
        <index name="KEY_teams_for_constraints">
            <index-column name="team_game" size="11" />
            <index-column name="team_id" size="11" />
        </index>
        <index name="KEY_teams_name_check">
            <index-column name="team_game" size="11" />
            <index-column name="team_name" size="150" />
        </index>
        <foreign-key name="FK_team_game" foreignTable="games" phpName="Game" refPhpName="Team">
            <reference local="team_game" foreign="game_id"/>
        </foreign-key>
    </table>

</database>

我的 PHP 测试代码:

echo "----- ----- -----  PROPEL TEST (START) ----- ----- ----- <BR><BR>";

echo "--1--<BR>";
$game = new Game();
$game->setGameName('PropelTestGame10');
echo "--2--<BR>";
$team = new Team();
$team->setTeamName('Propel Test Team10');
$team->setTeamGame($game);
echo "--3--<BR>";
$team->save();
echo "--4--<BR>";
var_dump($team->toArray());
echo "<BR>";
echo "--5--<BR>";

echo "----- ----- -----  PROPEL TEST (END) ----- ----- ----- <BR><BR><BR><BR><BR>";

PHP 代码生成以下输出:

----- ----- ----- PROPEL TEST (START) ----- ----- -----
--1--
--2--
Notice: Object of class Game could not be converted to int in E:\MyApp\Model\Base\Team.php on line 351
--3--
--4--
array(3)  ["TeamGame"]=> int(1) ["TeamId"]=> int(10) ["TeamName"]=> string(18) "Propel Test Team10" 
--5--
----- ----- ----- PROPEL TEST (END) ----- ----- -----

如果游戏表为空,则数据库中不会存储任何内容。在这种情况下,游戏表中有一个旧行,并且插入的团队与该游戏相关联(TeamGame=1)。没有任何新内容保存到游戏表中。

我做错了什么? 我不明白为什么我的结构在书本示例中不起作用 (Propel 2 - Book-example)。

【问题讨论】:

【参考方案1】:

这是你的错误:

$team->setTeamGame($game);

您正在尝试将team_game 列设置为对象值。您在架构中写道,这将是整数,因此基类中的这个自动生成的函数需要整数值。你应该使用:

$team->setGame($game);

如果你想设置相关的对象或者你可以使用:

$game->save();
$team-setTeamGame($game->getPrimaryKey());

这是你的working example

【讨论】:

以上是关于无法获得在 Propel2 中工作的外键的主要内容,如果未能解决你的问题,请参考以下文章

使用 S3 静态网站托管重定向到无法在 chrome 中工作的 WWW

使用 mysql 工作台创建 CHAR 类型的外键时出错:错误 1005:无法创建表(错误号:150)

Applescript 无法在 Mountain Lion 中工作的路径

Flask-SqlAlchemy - 与列''关联的外键无法找到表

使用无法在 Safari 中工作的图像转换 SVG

MacOS catalina Makefile 无法正确处理在 CLI 中工作的 shell 命令