Skip to content

Commit

Permalink
Merge pull request #315 from bomjfedosei/master
Browse files Browse the repository at this point in the history
Add OracleDB Connector
  • Loading branch information
nticaric authored Aug 9, 2024
2 parents 1309668 + c7f86d8 commit 6116502
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
64 changes: 64 additions & 0 deletions src/Connectors/OracleDBConnector.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<?php

namespace TeamTNT\TNTSearch\Connectors;

use PDO;

class OracleDBConnector extends Connector implements ConnectorInterface {

/**
* The PDO connection options.
*
* @var array
*/
protected $options = array(
PDO::ATTR_CASE => PDO::CASE_NATURAL,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_ORACLE_NULLS => PDO::NULL_NATURAL,
PDO::ATTR_STRINGIFY_FETCHES => false,
);

/**
* Establish a database connection.
*
* @param array $config
* @return PDO
*/
public function connect(array $config)
{
$options = $this->getOptions($config);

return $this->createConnection($this->getDsn($config), $config, $options);
}

/**
* Create a DSN string from a configuration.
*
* @param array $config
* @return string
*/
protected function getDsn(array $config)
{
extract($config);

// First we will create the basic DSN setup as well as the port if it is in
// in the configuration options. This will give us the basic DSN we will
// need to establish the PDO connections and return them back for use.

if (in_array('oci', $this->getAvailableDrivers()))
{
return "oci:dbname={$dbtns};charset=utf8";
}
}

/**
* Get the available PDO drivers.
*
* @return array
*/
protected function getAvailableDrivers()
{
return PDO::getAvailableDrivers();
}

}
2 changes: 2 additions & 0 deletions src/Engines/EngineTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ public function createConnector(array $config)
return new SqlServerConnector;
case 'filesystem':
return new FileSystemConnector;
case 'oracledb':
return new OracleDBConnector;
}
throw new Exception("Unsupported driver [{$config['driver']}]");
}
Expand Down

0 comments on commit 6116502

Please sign in to comment.