laravel-oci8
laravel-oci8 copied to clipboard
Oracle DB driver for Laravel via OCI8
### Summary of problem or feature request Hi guys, I'm using yajra/laravel-oci8 to connect with oracle database. The problem is when I call a package.procedure with parameters in/out. The result...
I have problem laravel 8 and oracle 12C and php 7.4.8 ORA-12505: TNS:listener does not currently know of SID given in connect descriptor service_name connect to laravel php code .env...
### Summary of problem or feature request I'm not able to run `php artisan migrate:rollback` or `php artisan migrate:fresh` cause it tries to drop sequences generated by the system. If...
### Summary of problem or feature request my database is on a different server from apache server with each request database, an active session is opened but this active session...
### Summary of problem or feature request ### Code snippet of problem ### System details - Operating System - PHP Version - Laravel Version - Laravel-OCI8 Version
### Summary of problem or feature request I have a stored procedures with more than one cursor two or even more and wonder how could I execute such a stored...
### Summary of problem or feature request executeFunction Fails ``` Error Code : 6550\r\n Error Message : ORA-06550: line 1, column 18:\n PLS-00224: object 'BOOKING_MNT.CHECK_LOCATION_TIME(P_LOCATION, TO_DATE(P_DATE, DD-MM-YYYY HH24:MI))' must be...
### Summary of problem or feature request Due to an issue with security & firewall, I can use composer or git to install this module on laravel. Could you explain...
### Summary of problem or feature request Would like to use Oracle Stored Procedure with output parameter SP: DECLARE out_var NUMBER; BEGIN test_params (1,2,out_var); DBMS_OUTPUT.PUT_LINE('Result:'||out_var); END call from Laravel: $procedureName...
What is required is this arrangement $cursorEntrada to convert it into a valid cursor to pass it to an oracle store procedure as an input parameter $cursorEntrada = [ 'MON_CONSULTAR'...