bobsbg / yii2-oci2pdo
Yii2 extension to simulate a PDO connection to Oracle database using PHP OCI8
Package info
github.com/neutrinobg/yii2-oci2pdo
Type:yii2-extension
pkg:composer/bobsbg/yii2-oci2pdo
v1.0.4
2016-11-30 08:34 UTC
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2026-04-09 07:41:43 UTC
README
yii2-oci2pdo
Yii2 extension to simulate a PDO connection to Oracle database using PHP OCI8
Installation
Install With Composer The preferred way to install this extension is through composer. Either run
php composer.phar require bobsbg/yii2-oci2pdo
or add
"bobsbg/yii2-oci2pdo": "*"
to the require section of your composer.json file.
Usage / configuration
'db' => [ 'class' => 'bobsbg\oci2pdo\OciDbConnection', 'dsn' => 'oci:dbname=DBNAME;charset=UTF8', 'username' => 'scott', 'password' => 'tiger', 'charset' => 'utf8', ],