summaryrefslogtreecommitdiff
path: root/classes/dbupdater.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-17 20:12:14 +0400
committerAndrew Dolgov <[email protected]>2013-04-17 20:12:14 +0400
commitd9c85e0f112034ca3e3f4d34213f6dcccf9d54e1 (patch)
tree27a3613e3c79d4e1fe7d1174e04c1288db4836f1 /classes/dbupdater.php
parentb4b45b4534e87026f7f07167cb78e44456144179 (diff)
classes: use OO DB interface
Diffstat (limited to 'classes/dbupdater.php')
-rw-r--r--classes/dbupdater.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/classes/dbupdater.php b/classes/dbupdater.php
index a319da03d..f157342d4 100644
--- a/classes/dbupdater.php
+++ b/classes/dbupdater.php
@@ -2,18 +2,18 @@
class DbUpdater {
private $dbh;
- private $db_type;
+ private $$this->dbh->type;
private $need_version;
- function __construct($dbh, $db_type, $need_version) {
+ function __construct($dbh, $$this->dbh->type, $need_version) {
$this->dbh = $dbh;
- $this->db_type = $db_type;
+ $this->$this->dbh->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");
+ $result = $this->dbh->query("SELECT schema_version FROM ttrss_version");
+ return (int) $this->dbh->fetch_result($result, 0, "schema_version");
}
function isUpdateRequired() {
@@ -21,7 +21,7 @@ class DbUpdater {
}
function getSchemaLines($version) {
- $filename = "schema/versions/".$this->db_type."/$version.sql";
+ $filename = "schema/versions/".$this->$this->dbh->type."/$version.sql";
if (file_exists($filename)) {
return explode(";", preg_replace("/[\r\n]/", "", file_get_contents($filename)));
@@ -37,21 +37,21 @@ class DbUpdater {
if (is_array($lines)) {
- db_query("BEGIN");
+ $this->dbh->query("BEGIN");
foreach ($lines as $line) {
if (strpos($line, "--") !== 0 && $line) {
- db_query($line);
+ $this->dbh->query($line);
}
}
- $db_version = $this->getSchemaVersion();
+ $$this->dbh->version = $this->getSchemaVersion();
- if ($db_version == $version) {
- db_query("COMMIT");
+ if ($$this->dbh->version == $version) {
+ $this->dbh->query("COMMIT");
return true;
} else {
- db_query("ROLLBACK");
+ $this->dbh->query("ROLLBACK");
return false;
}
} else {