Arjay Angeles

Results 436 comments of Arjay Angeles

Thanks for the PR! The changes look good, however, I suspect this might break the export functionality of [buttons package](https://github.com/yajra/laravel-datatables-buttons). Will check further when I get the chance.

`addColumn` disables search/sort by default since it is considered computed and not part of the DB. You can use [filterColumn](https://yajrabox.com/docs/laravel-datatables/10.0/filter-column#main-content) to handle the search instead.

It seems related to this issue: https://github.com/yajra/laravel-datatables/issues/3156, I will try to fix it when I get the chance. Please do not hesitate to submit a PR if you can. Thanks!

I tried adding the getter and it is serialized just fine. Before processing on https://github.com/yajra/laravel-datatables/blob/master/src/Utilities/Helper.php#L204: ```php array:18 [▼ // vendor/yajra/laravel-datatables-oracle/src/Utilities/Helper.php:209 "id" => 1 "name" => "Elaina Russel" "username" => null...

Whoops, I was testing using the latest version with https://github.com/yajra/laravel-datatables/pull/3163. Can you update your version and advise if the PR resolves this issue? Thanks!

Was able to replicate the issue using the package. Using SQL Developer, I also replicated the issue using `EXECUTE IMMEDIATE 'DBMS_MVIEW.refresh(''users_mv'')';` It seems like the PDO behaves like `execute immediate`...

Got it, just remove the exec in your SQL. ```php DB::statement("begin DBMS_MVIEW.refresh('users_mv'); end;"); ```

Thanks for the PR, will review this as soon as I can.

Running on Laravel 11.14.0, package breaks on 11.15 Encountered this error: ``` Illuminate\Database\QueryException Error Code : 1735 Error Message : ORA-01735: invalid ALTER TABLE option ORA-06512: at line 9 ORA-06512:...

The SQL below seems to work fine. However, we need to pass the username (schema) in the query as parameter ```sql begin for s in ( SELECT 'alter table '...