PMA\libraries\dbi\DBIExtension::storeResult PHP Méthode

storeResult() public méthode

Store the result returned from multi query
public storeResult ( resource $link ) : mixed
$link resource mysql link
Résultat mixed false when empty results / result set when not empty
    public function storeResult($link);

Usage Example

 /**
  * 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);
 }