Arjay Angeles

Results 436 comments of Arjay Angeles

@chrisangle thank you for the suggestion, would you be able to submit a PR for this proposal?

Is there a responsive option for column? It seems like there is no docs for it https://datatables.net/reference/option/columns.responsive? Maybe what you need is responsivePriority? https://datatables.net/reference/option/columns.responsivePriority Anyways, PR is welcome for this...

Not familiar with that, can you please send a PR to better visualize your issue. Or provide sample js codes. Thanks!

apache and cli have different `php.ini`. Make you have oci8 enabled on both config.

Sorry for late response, I personally haven't tried this yet. Were you able to solve this?

There was a recent [PR](https://github.com/yajra/laravel-oci8/pull/368) that address this issue. Are you using the latest version?

Not sure but maybe try specifying the length on result? ```php $pdo = DB::connection('connection_name')->getPdo(); $result = null; $stmt = $pdo->prepare("begin :result := myFunction(:param1,:param2,:param3,:param4); end;"); $stmt->bindParam(':result', $result, \PDO::PARAM_STR|\PDO::PARAM_INPUT_OUTPUT, 12); $stmt->bindParam(':param1', $param1,...

Not sure but maybe try this: https://php-download.com/package/yajra/laravel-oci8

Yes, I think it's because CLOB / BLOB are loaded as an object in Oracle and thus additional processing is required to load the actual value as string. In `Oci8\Statement.php`,...

> Further options were introduced with Oracle 19c, including timeout and keep-alive settings. Unfortunately, we still uses lower version of Oracle and might not be able to support this atm....