Arjay Angeles
Arjay Angeles
Not sure on this one but I think this SO [post](https://stackoverflow.com/questions/27525948/handle-a-pl-sql-function-returning-a-record-in-php) might helped?
The SQL generated looks correct. Were you able to migrate the tables?
@sasanet can you please provide some snippets to reproduce the issue?
Try connecting on oracle using SQL developer first to see if it works.
Please provide the error log or review the laravel error log. Need more information to debug this.
Can you provide some snippets to reproduce the issue? Did you create the table using Laravel s schema builder?
I think this `schema:dump` feature/command is not yet supported by the package. Tagging for enhancement. Please do not hesitate to submit a PR if you can to support this command....
Can you provide some snippets on what you are trying to achieve? Thanks!
Can you please some snippets to reproduce the issue?
Seems to be working fine for me but tested on Laravel 9. ```php Route::get('test', function () { return User::query() ->select('users.name', 'u.email') ->whereIn('users.id', [1, 2, 3]) ->joinSub( User::query(), 'u', function (JoinClause...