1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-30 04:47:11 +00:00

add experimental support for PDO (_ENABLE_PDO)

This commit is contained in:
Andrew Dolgov
2013-04-18 08:20:45 +04:00
parent 7329ab2dd5
commit 9ee90455b8
3 changed files with 35 additions and 9 deletions

32
classes/db/stmt.php Normal file
View File

@@ -0,0 +1,32 @@
<?php
class Db_Stmt {
private $stmt;
private $cache;
function __construct($stmt) {
$this->stmt = $stmt;
$this->cache = false;
}
function fetch_result($row, $param) {
if (!$this->cache) {
$this->cache = $this->stmt->fetchAll();
}
if (isset($this->cache[$row])) {
return $this->cache[$row][$param];
} else {
user_error("Unable to jump to row $row", E_USER_WARNING);
return false;
}
}
function rowCount() {
return $this->stmt->rowCount();
}
function fetch() {
return $this->stmt->fetch();
}
}
?>