aboutsummaryrefslogtreecommitdiffstats
path: root/Db.php
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mekanisti.fi>2009-10-12 20:16:48 +0300
committerFilipp Lepalaan <filipp@mekanisti.fi>2009-10-12 20:16:48 +0300
commit2402d55fa294d7907535f7464798431e85ca9973 (patch)
tree93d509d64af8fd6697e2c818edf8ad9ebb026044 /Db.php
downloadmain-2402d55fa294d7907535f7464798431e85ca9973.tar.gz
main-2402d55fa294d7907535f7464798431e85ca9973.tar.bz2
main-2402d55fa294d7907535f7464798431e85ca9973.zip
Initial commit
Diffstat (limited to 'Db.php')
-rw-r--r--Db.php98
1 files changed, 98 insertions, 0 deletions
diff --git a/Db.php b/Db.php
new file mode 100644
index 0000000..2b7b532
--- /dev/null
+++ b/Db.php
@@ -0,0 +1,98 @@
+<?php
+
+/**
+ * boeuf/Db.php
+ * @author Filipp Lepalaan <filipp@mekanisti.fi>
+ * http://www.php.net/manual/en/language.oop5.patterns.php
+ */
+
+class Db
+{
+ private static $instance = NULL;
+
+ private function __construct()
+ {
+
+ }
+
+ /**
+ * Open persistent connection to database
+ */
+ public static function getInstance()
+ {
+ $c = App::conf();
+
+ if (!self::$instance)
+ {
+ try {
+ self::$instance = new PDO(
+ "{$c['db.driver']}:host={$c['db.host']};dbname={$c['db.name']}",
+ $c['db.username'], $c['db.password'], array(PDO::ATTR_PERSISTENT => true)
+ );
+
+ self::$instance->query("SET NAMES utf8");
+
+ } catch (PDOException $e) {
+ exit(App::error($e->getMessage()));
+ }
+
+ }
+
+ return self::$instance;
+
+ }
+
+ /**
+ * Deny cloning
+ */
+ public function __clone()
+ {
+ trigger_error("Hello, ich name was Singleton. Cloning is not allowed", E_USER_ERROR);
+ }
+
+ /**
+ * Execute an SQL query
+ */
+ public function query($sql, $data = null)
+ {
+ if (!$data) {
+ $data = array();
+ }
+
+ // Might be just a string
+ if (!is_array($data)) {
+ $data = array($data);
+ }
+
+ try {
+
+ $stmt = self::getInstance()->prepare($sql);
+ $result = $stmt->execute($data);
+
+ if (!$result) {
+ $e = $stmt->errorInfo();
+ exit(App::error($e[2]));
+ }
+
+ } catch (PDOException $e) {
+ $error = $e->getMessage() . $sql;
+ App::log($error);
+ exit(App::error($error));
+ }
+
+ // Select statements need the query results
+ if (preg_match('/^select/i', $sql)) {
+ return $stmt;
+ }
+
+ if (empty($data['id'])) {
+ $data['id'] = self::getInstance()->lastInsertId();
+ }
+
+ return $data;
+
+ }
+
+}
+
+?> \ No newline at end of file