laravel-oci8
laravel-oci8 copied to clipboard
Oracle DB driver for Laravel via OCI8
### Summary of problem or feature request Running into the "Call to undefined function Yajra\Pdo\oci_connect()" when loading the page. But when I run php artisan tinker, I can call my...
### Summary of problem or feature request Even using rollback the data is updated in the database ### Code snippet of problem ```php \DB::beginTransaction(); AclUsers::where('id', 1538)->update(['name' => 'EDSON ALVES DE...
### Summary of problem or feature request I'm doing a query to an Oracle Oracle 11g using Eloquent works when I take a single record, try to do the test...
### Summary of problem or feature request When using DB::insert(...), string variables that contain a dash/hyphen are being treated as if they are numbers. This is true even if the...
I am using oracle 11g, Laravel 5.7, yajra/laravel-oci8 5.7.*. I know that if i use $table->increments() on migration method(php artisan migrate~~) , then generate sequence on Oracle automatically. But, when...
### Summary of problem or feature request OCI8 already show in my phpinfo.php but when i want to migrate in laravel its show In Oci8.php line 464: ORA-12154: TNS:could not...
I've a laravel project with multiple connection. Then i want to use below a row code. It normally works on laravel 5.2. But it does not work on laravel 5.8....
### Summary of problem or feature request Hi: This is a question (and a feature request if what I'm asking doesn't exist). I have an Oracle Procedure that uses named...
There are some problems with using laravel-oci8: ### Code snippet of problem When i set id increments,$table->increments('id'); Triggers will be set》》》:begin if :new.id is null then select sys_menu_id_seq.nextval into :new.id...
### Summary of problem or feature request When performing multiples UNION ALL Oracle throws ORA-933 , because parenthesis are missing through selects/union all. DOES NOT WORK (current generated query, without...