コード例 #1
0
ファイル: IbmDb2.php プロジェクト: liuxuezhan/my_tool
 /**
  * @param Profiler\ProfilerInterface $profiler
  * @return IbmDb2
  */
 public function setProfiler(Profiler\ProfilerInterface $profiler)
 {
     $this->profiler = $profiler;
     if ($this->connection instanceof Profiler\ProfilerAwareInterface) {
         $this->connection->setProfiler($profiler);
     }
     if ($this->statementPrototype instanceof Profiler\ProfilerAwareInterface) {
         $this->statementPrototype->setProfiler($profiler);
     }
     return $this;
 }