我正在使用Docrine 1.2和Zend Framework并试图保存一个Doctrine Collection。
我正在使用以下代码从我的表类中检索我的集合。
public function getAll()
{
return $this->createQuery('e')
->orderBy('e.order ASC, e.eventType ASC')
->execute();
}
我还有以下课程来重新排序上述事件记录。
class Admin_Model_Event_Sort extends Model_Abstract
{
/**
* Events collection
* @var Doctrine_Collection
*/
protected $_collection = null;
public function __construct()
{
$this->_collection = Model_Doctrine_EventTypesTable::getInstance()->getAll();
}
public function save($eventIds)
{
if ($this->_collection instanceof Doctrine_Collection) {
foreach ($this->_collection as $record)
{
$key = array_search($record->eventTypeId, $eventIds);
if ($key !== false) {
$record->order = (string)$key;
}
}
return $this->_saveCollection($this->_collection);
} else {
return false;
}
}
}
上面的_saveCollection方法如下
/**
* Attempts to save a Doctrine Collection
* Sets the error message property on error
* @param Doctrine_Collection $collection
* @return boolean
*/
protected function _saveCollection(Doctrine_Collection $collection)
{
try {
$collection->save();
return true;
} catch (Exception $e) {
$this->_errorMessage = $e->getMessage();
OpenMeetings_Logger_ErrorLogger::write('Unable to save Doctrine Collection');
OpenMeetings_Logger_ErrorLogger::vardump($this->_errorMessage);
return false;
}
}
上述save方法中的事件id只是一个枚举的事件id数组,我使用数组的键来设置使用order字段的事件的排序顺序。如果我对集合执行集合的var_dump($ this-> _collection-> toArray()),我会得到正确的数据。但是,当我尝试保存集合时,我收到以下错误。
" SQLSTATE [42000]:语法错误或访问冲突:1064 SQL语法中有错误;检查与您的MySQL服务器版本相对应的手册,以获得正确的语法,以便在' order =' 0' event whereid =' 3''在第1行"
无论如何我可以让Doctrine扩展这个错误,完整的SQL语句将是一个开始,如果有人知道为什么会出现这个错误,那将非常有用。
非常感谢提前
加里
修改
我已经修改了上面的代码,试图一次处理一条记录,但我仍然遇到同样的问题。
public function save($eventIds)
{
foreach ($eventIds as $key => $eventId) {
$event = Model_Doctrine_EventTypesTable::getInstance()->getOne($eventId);
$event->order = (string)$key;
$event->save();
}
}
答案 0 :(得分:1)
好的,我发现了问题。我使用MYSQL保留字顺序作为字段名称因此错误,将其更改为sortOrder并且问题消失了。
希望这可以帮助有类似问题的人。
加里