summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-12-02 01:28:30 +0300
committerAndrew Dolgov <[email protected]>2017-12-02 01:28:30 +0300
commit1d92297a9654ea6f6bf9277a07b04223fe65fbb5 (patch)
treee70dfc93fdc57e971017b509f56450d36535ce57
parentc949a9282e1102e82cca5bb158e84f742e8f1456 (diff)
dbupdater: use PDO
-rw-r--r--classes/dbupdater.php23
-rw-r--r--classes/handler/public.php2
-rwxr-xr-xupdate.php2
3 files changed, 14 insertions, 13 deletions
diff --git a/classes/dbupdater.php b/classes/dbupdater.php
index 2d131fde7..1014fa5a5 100644
--- a/classes/dbupdater.php
+++ b/classes/dbupdater.php
@@ -1,19 +1,19 @@
<?php
class DbUpdater {
- private $dbh;
+ private $pdo;
private $db_type;
private $need_version;
- function __construct($dbh, $db_type, $need_version) {
- $this->dbh = $dbh;
+ function __construct($pdo, $db_type, $need_version) {
+ $this->pdo = Db::pdo(); //$pdo;
$this->db_type = $db_type;
$this->need_version = (int) $need_version;
}
function getSchemaVersion() {
- $result = db_query("SELECT schema_version FROM ttrss_version");
- return (int) db_fetch_result($result, 0, "schema_version");
+ $row = $this->pdo->query("SELECT schema_version FROM ttrss_version")->fetch();
+ return (int) $row['schema_version'];
}
function isUpdateRequired() {
@@ -26,6 +26,7 @@ class DbUpdater {
if (file_exists($filename)) {
return explode(";", preg_replace("/[\r\n]/", "", file_get_contents($filename)));
} else {
+ user_error("DB Updater: schema file for version $version is not found.");
return false;
}
}
@@ -37,17 +38,17 @@ class DbUpdater {
if (is_array($lines)) {
- db_query("BEGIN");
+ $this->pdo->beginTransaction();
foreach ($lines as $line) {
if (strpos($line, "--") !== 0 && $line) {
- if (!db_query($line, false)) {
+ if (!$this->pdo->query($line)) {
if ($html_output) {
print_notice("Query: $line");
- print_error("Error: " . db_last_query_error());
+ print_error("Error: " . implode(", ", $this->pdo->errorInfo()));
} else {
_debug("Query: $line");
- _debug("Error: " . db_last_query_error());
+ _debug("Error: " . implode(", ", $this->pdo->errorInfo()));
}
return false;
@@ -58,10 +59,10 @@ class DbUpdater {
$db_version = $this->getSchemaVersion();
if ($db_version == $version) {
- db_query("COMMIT");
+ $this->pdo->commit();
return true;
} else {
- db_query("ROLLBACK");
+ $this->pdo->rollBack();
return false;
}
} else {
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 3c65b992b..f36ee8b1a 100644
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -855,7 +855,7 @@ class Handler_Public extends Handler {
<?php
@$op = $_REQUEST["subop"];
- $updater = new DbUpdater(Db::get(), DB_TYPE, SCHEMA_VERSION);
+ $updater = new DbUpdater(Db::pdo(), DB_TYPE, SCHEMA_VERSION);
if ($op == "performupdate") {
if ($updater->isUpdateRequired()) {
diff --git a/update.php b/update.php
index 9012d717b..7104f760a 100755
--- a/update.php
+++ b/update.php
@@ -317,7 +317,7 @@
if (isset($options["update-schema"])) {
_debug("checking for updates (" . DB_TYPE . ")...");
- $updater = new DbUpdater(Db::get(), DB_TYPE, SCHEMA_VERSION);
+ $updater = new DbUpdater(Db::pdo(), DB_TYPE, SCHEMA_VERSION);
if ($updater->isUpdateRequired()) {
_debug("schema update required, version " . $updater->getSchemaVersion() . " to " . SCHEMA_VERSION);