dev-master
9999999-devA PDO userspace driver for the Oracle database using the oci8 PHP module.
MIT
The Requires
- php >=5.4.0
by Ben Ramsey
by Jan Waś
pdo driver oci8
Wallogit.com
2017 © Pedro Peláez
A PDO userspace driver for the Oracle database using the oci8 PHP module.
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)
composer require nineinchnick\pdo_oci8
$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);
A PDO userspace driver for the Oracle database using the oci8 PHP module.
MIT
pdo driver oci8