* This file is part of the ManageWP Worker plugin.
* (c) ManageWP LLC <contact@managewp.com>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
class MWP_IncrementalBackup_Database_MysqlStatement implements MWP_IncrementalBackup_Database_StatementInterface
public function __construct($result)
$row = @mysql_fetch_assoc($this->result);
public function fetchAll()
while ($row = $this->fetch()) {
return @mysql_free_result($this->result);