2017-12-19 22:15:05 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse\Db;
|
|
|
|
|
|
|
|
class PDOResult extends AbstractResult {
|
|
|
|
protected $set;
|
2018-12-06 22:46:00 +00:00
|
|
|
protected $db;
|
2017-12-19 22:15:05 +00:00
|
|
|
protected $cur = null;
|
|
|
|
|
|
|
|
// actual public methods
|
|
|
|
|
2018-11-02 15:47:10 +00:00
|
|
|
public function changes(): int {
|
2018-12-06 22:46:00 +00:00
|
|
|
return $this->set->rowCount();
|
2017-12-19 22:15:05 +00:00
|
|
|
}
|
|
|
|
|
2018-11-02 15:47:10 +00:00
|
|
|
public function lastId(): int {
|
2018-12-06 22:46:00 +00:00
|
|
|
try {
|
|
|
|
return (int) $this->db->lastInsertId();
|
|
|
|
} catch (\PDOException $e) {
|
|
|
|
return 0;
|
|
|
|
}
|
2017-12-19 22:15:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// constructor/destructor
|
|
|
|
|
2018-12-06 22:46:00 +00:00
|
|
|
public function __construct(\PDO $db, \PDOStatement $result) {
|
2017-12-19 22:15:05 +00:00
|
|
|
$this->set = $result;
|
2018-12-06 22:46:00 +00:00
|
|
|
$this->db = $db;
|
2017-12-19 22:15:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function __destruct() {
|
|
|
|
try {
|
|
|
|
$this->set->closeCursor();
|
|
|
|
} catch (\PDOException $e) { // @codeCoverageIgnore
|
|
|
|
}
|
|
|
|
unset($this->set);
|
2018-12-06 22:46:00 +00:00
|
|
|
unset($this->db);
|
2017-12-19 22:15:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PHP iterator methods
|
|
|
|
|
|
|
|
public function valid() {
|
|
|
|
$this->cur = $this->set->fetch(\PDO::FETCH_ASSOC);
|
2020-03-01 20:16:50 +00:00
|
|
|
return $this->cur !== false;
|
2017-12-19 22:15:05 +00:00
|
|
|
}
|
|
|
|
}
|