2017 © Pedro Peláez
 

library pdo_oci8

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

image

nineinchnick/pdo_oci8

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

  • Saturday, March 28, 2015
  • by nineinchnick
  • Repository
  • 2 Watchers
  • 7 Stars
  • 18 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 19 Forks
  • 0 Open issues
  • 1 Versions
  • 6 % Grown

The README.md

pdo_oci8

A PDO userspace driver for the Oracle database using the oci8 PHP module., (*1)

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

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);

The Versions

28/03 2015

dev-master

9999999-dev

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

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

pdo driver oci8