laravel-oci8
laravel-oci8 copied to clipboard
Oracle DB driver for Laravel via OCI8
Cannot add listen to Queries for Laravel Debugbar: ``` /var/www/html/BRS_BBS/vendor/barryvdh/laravel-debugbar/src/LaravelDebugbar.php #338 Exception /var/www/html/BRS_BBS/vendor/yajra/laravel-pdo-via-oci8/src/Pdo/Oci8.php #461 Yajra\Pdo\Oci8\Exceptions\Oci8Exception Cannot add listen transactions to Queries for Laravel Debugbar: /var/www/html/BRS_BBS/vendor/barryvdh/laravel-debugbar/src/LaravelDebugbar.php #393 Exception /var/www/html/BRS_BBS/vendor/yajra/laravel-pdo-via-oci8/src/Pdo/Oci8.php #461 ```
### Summary of problem or feature request I am using laravel 5.5.* . ### Code snippet of problem When I try to migrate, This problem is occured. ### System details...
### Summary of problem or feature request When attempting to eager load a many-to-many relationship via `with()`, all primary models are loaded with empty relationship keys. See example below. ###...
Hi, is there a config optio to set the NLS_TIMESTAMP_TZ_FORMAT ? I cant seem to find any info about it.
I need to fetch one row at a time passing the limit offset parameters. I used the below query: MODEL::select('ID') ->orderBy('ID','DESC') ->limit(1) ->offset($offset) Here I will increment the $offset value...
### Summary of problem or feature request We have an application growing in users, and have started seeing this error. It seems that our persistent connection is getting dropped for...
### Summary of problem or feature request When i use command change() to change the column size or type, it return error cannot find column name. ### Code snippet of...
### Summary of problem or feature request When using this code: ``` $queryInstance = DB::connection('myoracleconnection')->table($table); $id = $queryInstance->insertGetId(['title' => 'My Title']); ``` I get the following exception: ``` ErrorException in...
I tried to execute this code: `$date = DB::selectOne("select f_recibo_fec_ultpago(36601,'2017/10/23') from dual");` but, it is not working. give me this error. """ Error Code : 1861\r\n Error Message : ORA-01861:...
Hi, Thanks for the package. I wud like to create a sequence with more options than the example given. Is it possible to create a sequence ```php create sequence MY_TEST_SEQ...