Navigation Menu

Skip to content

nineinchnick/pdo_oci8

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pdo_oci8

A PDO userspace driver for the Oracle database using the oci8 PHP module.

Based on ramsey/pdo_oci8, yjeroen/oci8Pdo and yajra/laravel-pdo-via-oci8.

Installation

composer require nineinchnick\pdo_oci8

Usage

$tsn = <<<TSN
(
  DESCRIPTION=(
    ADDRESS_LIST=(
      ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)
    )
  )(
    CONNECT_DATA=(SID=XE)
  )
)
TSN;
$dsn = "oci:dbname=$tsn;charset=AL32UTF8;";
$username = 'xe';
$password = 'xe';
$attributes = [];

$conn = new nineinchnick\pdo\Oci8($dsn, $username, $password, $attributes);

About

PHP userspace classes for Oracle to mimic the PDO interface while wrapping the oci8 functions.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%