Пример #1
0
 /**
  * {@inheritdoc}
  */
 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null)
 {
     if ($arg2 === null) {
         return $this->stmt->setFetchMode($fetchMode);
     } elseif ($arg3 === null) {
         return $this->stmt->setFetchMode($fetchMode, $arg2);
     }
     return $this->stmt->setFetchMode($fetchMode, $arg2, $arg3);
 }
 public function setFetchMode($fetchMode, $arg1 = null, $arg2 = null)
 {
     $this->defaultFetchMode = $fetchMode;
     $this->stmt->setFetchMode($fetchMode, $arg1, $arg2);
 }
Пример #3
0
 public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null)
 {
     return $this->wrapped->setFetchMode($fetchMode, $arg2, $arg3);
 }