###PDO via Oci8
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