是否有可能使用学说(symfony 1.4)创建查询,其中我在 from 子句中定义了数据库中的表名(不是 schema.yml 中的模型类)?
例如:
在 schema.yml 我有模型类
StaticPage:
connection: doctrine
tableName: static_page
columns:
...
我的查询如下:
$item = Doctrine_Query::create();
$item->query("SELECT * FROM StaticPage WHERE id = ".$id);
$change = $item->fetchOne();
$change->setPublished(true);
$change->save();
在这个查询而不是StatigPage中,我需要static_page(tableName)......
谢谢...