connection = \Phacil\Framework\Registry::getInstance()->create(\Phacil\Framework\Databases\Connectors\Oracle\ORDS\Connector::class, [ $hostname.$database, \Phacil\Framework\Config::DB_PORT() ?: $port, $username, $password ]); } catch (\PDOException $e) { throw new \Phacil\Framework\Exception('Failed to connect to database. Reason: \'' . $e->getMessage() . '\''); } } /** {@inheritdoc} */ public function query($sql, $params = array()) { return $this->execute($sql, $params); } public function createStatement() { $this->rowCount = 0; /** @var \Phacil\Framework\Databases\Connectors\Oracle\ORDS\Api\Query */ $this->statement = $this->connection->createStatement(); } /** {@inheritdoc} */ public function escape($value) { return str_replace(array("\\", "\0", "\n", "\r", "\x1a", "'", '"'), array("\\\\", "\\0", "\\n", "\\r", "\Z", "\'", '\"'), $value); } /** {@inheritdoc} */ public function countAffected() { return $this->rowCount; } /** {@inheritdoc} */ public function getLastId() { return null; } /** {@inheritdoc} */ public function isConnected() { if ($this->connection) { return true; } else { return false; } } /** * {@inheritdoc} */ public function execute($sql, array $params = []) { $this->createStatement(); try { $stmt = $this->statement->prepareSQL($sql, $params)->execute(); if (!$stmt) { throw new \Phacil\Framework\Exception('Error preparing query: ' . $this->statement->getError()); } if ($stmt->getNumRows() && !empty($stmt->getItems())) { /** @var \Phacil\Framework\Databases\Api\Object\ResultInterface */ $data = \Phacil\Framework\Registry::getInstance()->create(\Phacil\Framework\Databases\Api\Object\ResultInterface::class, [$stmt->getItems()]); $data->setNumRows($stmt->getNumRows()); $this->rowCount = $stmt->getNumRows(); $stmt->close(); return $data; } else { $this->rowCount = $stmt->getNumRows(); $stmt->close(); return true; } } catch (\PDOException $exception) { throw new \Phacil\Framework\Exception($exception->getMessage()); } } }