A super easy PHP Framework for web development! https://github.com/exacti/phacil-framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
3.3 KiB

<?php
/*
* Copyright © 2024 ExacTI Technology Solutions. All rights reserved.
* GPLv3 General License.
* https://exacti.com.br
* Phacil PHP Framework - https://github.com/exacti/phacil-framework
*/
namespace Phacil\Framework\Databases\Driver;
use Phacil\Framework\Databases\Api\DriverInterface;
/**
* Alternative ORDS connection method.
*
8 months ago
* @since 2.0.0
* @package Phacil\Framework\Databases */
class OracleORDS implements DriverInterface
{
const DB_TYPE = 'Oracle';
const DB_TYPE_ID = self::LIST_DB_TYPE_ID['ORACLE'];
/**
*
* {@inheritdoc}
*/
public function getDBType() {
return self::DB_TYPE;
}
/**
*
* {@inheritdoc}
*/
public function getDBTypeId() {
return self::DB_TYPE_ID;
}
/**
*
8 months ago
* @var \Phacil\Framework\Databases\Connectors\Oracle\ORDS\Connector
*/
private $connection = null;
/**
*
8 months ago
* @var \Phacil\Framework\Databases\Connectors\Oracle\ORDS\Api\Query
*/
private $statement;
private $rowCount;
/** {@inheritdoc} */
public function __construct($hostname, $username, $password, $database, $port = '8181', $charset = 'UTF8')
{
try {
8 months ago
/** @var \Phacil\Framework\Databases\Connectors\Oracle\ORDS\Connector */
$this->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())
{
8 months ago
return $this->execute($sql, $params);
}
public function createStatement() {
$this->rowCount = 0;
8 months ago
/** @var \Phacil\Framework\Databases\Connectors\Oracle\ORDS\Api\Query */
$this->statement = \Phacil\Framework\Registry::getInstance()->create(\Phacil\Framework\Databases\Connectors\Oracle\ORDS\Api\Query::class);
}
/** {@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()
{
8 months ago
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());
}
}
}