在 Symfony 1.4 中使用 Propel

发布于 2024-12-28 22:36:03 字数 808 浏览 1 评论 0原文

我必须按玩家 ID 返回行,如果没有行,就创建一个。 这不是最好的方法。

class PlayerRafPeer extends BasePlayerRafPeer {

  /**
   * Returns a PlayerRaf object by playerId. 
   * @param int $player_id
   * @param PDO $con
   * @return PlayerRaf
   */
  public static function retrieveByPlayerId($player_id, $con = null)
  {
    if ($con === null) {
      $con = Propel::getConnection(self::DATABASE_NAME);
    }

    $criteria = new Criteria();
    $criteria->add(self::PLAYER_ID, $player_id);
    $v = self::doSelectOne($criteria, $con);

    if (!$v) {
        $player = new PlayerRaf();
        $player->setPlayerId($player_id)
             ->setEmailCount(0)
             ->setDate(date("Y-m-d"), time());
        self::doInsert($player, $con);
        return $player;
    } 
    return $v;
  }

I've gotta return the row by player Id, if there is no row, make one.
This cant be the best way to do it.

class PlayerRafPeer extends BasePlayerRafPeer {

  /**
   * Returns a PlayerRaf object by playerId. 
   * @param int $player_id
   * @param PDO $con
   * @return PlayerRaf
   */
  public static function retrieveByPlayerId($player_id, $con = null)
  {
    if ($con === null) {
      $con = Propel::getConnection(self::DATABASE_NAME);
    }

    $criteria = new Criteria();
    $criteria->add(self::PLAYER_ID, $player_id);
    $v = self::doSelectOne($criteria, $con);

    if (!$v) {
        $player = new PlayerRaf();
        $player->setPlayerId($player_id)
             ->setEmailCount(0)
             ->setDate(date("Y-m-d"), time());
        self::doInsert($player, $con);
        return $player;
    } 
    return $v;
  }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自演自醉 2025-01-04 22:36:03

您应该避免在 Peer 类中添加逻辑,而应使用 ActiveQuery API。您可以阅读:http://www.propelorm.org/reference/model-criteria.html http://propel.posterous.com/propel-query-by-示例

对于您的情况,本节将为您提供帮助: http://www.propelorm.org /reference/model-criteria.html#creating_an_object_based_on_a_query

然后,你可以写:

<?php

$player = PlayerRafQuery::create()
            ->filterById($id)
            ->findOneOrCreate();

You should avoid to add logic in Peer classes, use the ActiveQuery API instead. You can read: http://www.propelorm.org/reference/model-criteria.html and http://propel.posterous.com/propel-query-by-example.

In your case, this section will help you: http://www.propelorm.org/reference/model-criteria.html#creating_an_object_based_on_a_query.

Then, you could write:

<?php

$player = PlayerRafQuery::create()
            ->filterById($id)
            ->findOneOrCreate();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文