操作
Backport(バックポート) #1235
完了opDoctrineQuery::specifyConnection() doesn't work
開始日:
2010-06-10
期日:
進捗率:
0%
予定工数:
説明
Overview (現象)¶
opDoctrineQuery::specifyConnection() で指定した接続が利用されず、デフォルトの接続が利用される。
Causes (原因)¶
lib/util/opDoctrineQuery.class.php
opDoctrineQuery::preQuery() で $this->conn に指定した接続を入れているが、$this->_conn を書き換えないと利用されないため。
132 public function preQuery() 133 { 134 if ($this->specifiedConnection) 135 { 136 $this->conn = $this->specifiedConnection; 137 }
Way to fix (修正内容)¶
$this->_conn に修正する。
操作