PMA\libraries\DatabaseInterface::storeResult PHP Méthode

storeResult() public méthode

Store the result returned from multi query
public storeResult ( object $link = null ) : mixed
$link object the connection object
Résultat 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);
    }