type = DatabaseType::SQLITE; $this->grammar = new SQLiteGrammar(); $this->schemaGrammar = new SQLiteSchemaGrammar(); /** * @todo Orange-Management/phpOMS#219 * Don't automatically connect to the database during initialization. This should be done in a separate step. * This also requires to adjust some other framework code which currently expects the database connection to be established after initialization. * Sometimes DB connections may not be needed and should only be connected to once required. */ $this->connect($dbdata); } /** * {@inheritdoc} */ public function connect(array $dbdata = null) : void { $this->dbdata = $dbdata ?? $this->dbdata; if (!isset($this->dbdata['db'], $this->dbdata['database']) || !DatabaseType::isValidValue($this->dbdata['db']) ) { $this->status = DatabaseStatus::FAILURE; throw new InvalidConnectionConfigException((string) \json_encode($this->dbdata)); } $this->close(); $this->prefix = $dbdata['prefix'] ?? ''; try { $this->con = new \PDO($this->dbdata['db'] . ':' . $this->dbdata['database']); $this->con->setAttribute(\PDO::ATTR_EMULATE_PREPARES, false); $this->con->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); $this->status = DatabaseStatus::OK; } catch (\PDOException $e) { unset($this->con); $this->status = DatabaseStatus::MISSING_DATABASE; } finally { $this->dbdata['password'] = '****'; } } }