public function connect() { if (self::$connection === null) { $this->Db = self::$connection = new SQLiteDatabase(DB_SQLITE_FILENAME, DB_SQLITE_MODE); } return self::$connection; }
/** * Make connection * * @return object value */ public function connect() { if (self::$connection === NULL) { $this->Db = self::$connection = new SQLiteDatabase(_dbFilename, _dbMode); } return self::$connection; }