Exemplo n.º 1
0
 public function getDbConnection()
 {
     if (self::$_db === null) {
         $file = dirname(__FILE__) . '/sqlite.db';
         self::$_db = new TDbConnection("sqlite:{$file}");
     }
     return self::$_db;
 }