/**
  * Check if there are any more query results from a multi query
  *
  * @param object $link the connection object
  *
  * @return bool true or false
  */
 public function moreResults($link = null)
 {
     $link = $this->getLink($link);
     if ($link === false) {
         return false;
     }
     return $this->_extension->moreResults($link);
 }
Esempio n. 2
0
 /**
  * Check if there are any more query results from a multi query
  *
  * @param object $link the connection object
  *
  * @return bool true or false
  */
 public function moreResults($link = null)
 {
     return $this->_extension->moreResults($link = null);
 }