/**
  * Store the result returned from multi query
  *
  * @param object $link the connection object
  *
  * @return mixed false when empty results / result set when not empty
  */
 public function storeResult($link = null)
 {
     $link = $this->getLink($link);
     if ($link === false) {
         return false;
     }
     return $this->_extension->storeResult($link);
 }
Esempio n. 2
0
 /**
  * Store the result returned from multi query
  *
  * @return mixed false when empty results / result set when not empty
  */
 public function storeResult()
 {
     return $this->_extension->storeResult();
 }