wernerm / laravel-pdo-via-oci8

PHP pdo_oci functions via oci8 extension

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PDO Userspace Driver for Oracle (oci8)

###PDO via Oci8

Latest Stable Version Total Downloads Build Status

The yajra/laravel-pdo-via-oci8 package is a simple userspace driver for PDO that uses the tried and tested OCI8 functions instead of using the still experimental and not all that functionnal PDO_OCI library.

Please report any bugs you may find.

###Installation

Add yajra/laravel-pdo-via-oci8 as a requirement to composer.json:

{
    "require": {
        "yajra/laravel-pdo-via-oci8": "~0.9"
    }
}

And then run composer update

Note: lastInsertId function returns the current value of the sequence related to the table where record is inserted. The sequence name should follow this format {$table}.'_'.{$column}.'_seq' for it to work properly.

###Credits

About

PHP pdo_oci functions via oci8 extension

License:Other


Languages

Language:PHP 100.0%