pdo-via-oci8
pdo-via-oci8 copied to clipboard
PHP PDO_OCI functions via OCI8 extension
This PR aims to improve fetchAll method by utilizing oci_fetch_all. Current implement causes like an N+1 side effect which calls fetch method multiple times depending on the numbers of rows...
### Summary of problem or feature request i have php 8 and laravel 8. While binding oracle collections in Statement.php there is a check for oci-collection class. But in php...
### Summary of problem or feature request If I would like to debug the Statements and I create a debug class that extends Statement I should be able to use...
The Statement::getColumnMeta() method does not respect the `PDO::ATTR_CASE` setting and always returns uppercase names for columns. I think the field name should be converted to lower case: ``` if ($this->getAttribute(PDO::ATTR_CASE)...
### Summary of problem or feature request I am running Laravel 6 I'm getting the error below: ```Yajra\Pdo\Oci8\Exceptions\Oci8Exception ORA-12533: TNS:illegal ADDRESS parameters My .env DB_CONNECTION=oracle DB_HOST=127.0.0.1 DB_POST=1521 DB_DATABASE=XE DB_USERNAME=HR DB_PASSWORD=hshahashs...
### Summary of problem or feature request My code: create or replace PROCEDURE GET_USERS_LIST ( C_USERS OUT SYS_REFCURSOR ) IS BEGIN OPEN C_USERS FOR SELECT * FROM USERS; END GET_USERS_LIST;...
As per [request for a Pull Request](https://github.com/yajra/pdo-via-oci8/issues/50), I'm now submitting changes that I've applied. The objective is to build better Oracle debugging support into the Oci8Exception class, so that (for...
Hi. I know this isn't an "issue" as such, but I was wondering if you'd be able to update the exception-handler class with a few helper-functions that make it easier...
got `ORA-00932: inconsistent datatypes` when one of table/view column defined as tabletype I'm working with some oracle API, that i can't change. In the api's last update developers has added...
I used the laravel function to push a database queue and got some error below. Error Code : 1438 Error Message : ORA-01438: value larger than specified precision allowed for...