/**
  * Prepare next result from multi_query
  *
  * @param object $link the connection object
  *
  * @return bool true or false
  */
 public function nextResult($link = null)
 {
     $link = $this->getLink($link);
     if ($link === false) {
         return false;
     }
     return $this->_extension->nextResult($link);
 }
Esempio n. 2
0
 /**
  * Prepare next result from multi_query
  *
  * @param object $link the connection object
  *
  * @return bool true or false
  */
 public function nextResult($link = null)
 {
     return $this->_extension->nextResult($link = null);
 }