FuelPHP - 如何使用ORM访问自定义sql语句?

时间:2013-10-23 20:09:04

标签: orm fuelphp fuelphp-orm

问题

是否可以创建自定义SQL查询并像处理带有FuelPHP ORM的表一样处理其结果?


实施例

我有一个SQL语句,可以为我提供一个表格。下图显示了pivot SQL语句的功能。在左边我们有'属性'表,在右边我们有下面的SQL pivot语句的结果。

SQL Pivot声明结果: On the left we have the 'properties' table and on the right we have the result of the following SQL pivot.

SQL Pivot声明:

SELECT
  item_id,
  MAX(IF(property_name = 'color', value, NULL)) AS color,
  MAX(IF(property_name = 'size', value, NULL)) AS size,
  ...
  ...
  ...
FROM
  properties
GROUP BY
  item_id;

问题:

我可以执行上述语句,然后通过常规的ORM方法访问列,例如

echo $table->color;
$table->color = 'blue';
$table->save();

另外,我看了FuelPHP EAV,看起来它可能就是我需要的......但我无法让它发挥作用。这是我需要的吗?

我从a buysql.com tutorial on pivot tables获得了上面的代码。它完全符合我的需要,但不确定如何与ORM集成。

1 个答案:

答案 0 :(得分:0)

为了我的目的,我得到了一些“有效”的东西,让我知道是否有更好的方法。

1)使sql创建一个临时表。

CREATE TEMPORARY TABLE IF NOT EXISTS temp_compiled_properties AS
(SELECT
  item_id,
  MAX(IF(property_name = 'color', value, NULL)) AS color,
  MAX(IF(property_name = 'size', value, NULL)) AS size,
  ...
  ...
  ...
FROM
  properties
GROUP BY
  item_id);

2)创建模型

//this is not a typical ORM model and cannot be accessed as such
//You must first run the init function before data can be accesses
//You can read data from the model, other methods may work, but not all ORM functions have been tested with this model.

class Model_Properties_Pivot extends \Orm\Model
{
    //--------------------------------------
    //Table Details
    //--------------------------------------
    protected static $_table_name = 'temp_compiled_properties';
    protected static $_primary_key = array('item_id');

    //dont define properties, ORM will automatically query the temp table to get these
    //protected static $_properties = array();

    public static function init($game_id)
    {   
        $sql = "CREATE TEMPORARY TABLE IF NOT EXISTS temp_compiled_properties AS
            (SELECT
               item_id,
               MAX(IF(property_name = 'color', value, NULL)) AS color,
               MAX(IF(property_name = 'size', value, NULL)) AS size,
               ...
               ...
               ...
            FROM
               properties
            GROUP BY
               item_id)";

        DB::query($sql)->execute();
    }

3)阅读模型

中的数据
Model_Properties_Pivot::init(14);
$all_data = Model_Properties_Pivot::query()->get();

另外,我调查了EAV并开始工作。问题是我的“属性”字段实际上是另一个外键(自动增量号)。这意味着我无法使用它,因为它是一个自动增量数字。基本上,我无法像$properties->10

那样访问它