Closed psylone closed 2 months ago
max data length fix
Thanks for the rapid action!
Tested, it seems to work. Are you plan to release a patched version on hex.pm?
Also do you interested to bring some sort of CI in the project?
I am running mix test and rebar3 ct manually. But if you'll make a pull request with CI configuration, I'll definitely merge it. Publishing to hex will be at the usual time next month. If you have any driver patch, please pull it and it'll be included in the next publishing :)
Hello, thanks for your work, max length helps, but if data greater than 35k, it still doesn't work. Thanks!
@vstavskyi Actually I receive a large XML from stored procedure, its size can be huge, but even if it sizes less than 100Kb, I got error. FYI when I select the same XML from db it works fine
@psylone Create elixir.yml https://github.com/erlangbureau/jamdb_oracle/actions
I fetched latest version from master, and now I get this error
"'ORA-06502: PL/SQL: numeric or value error\\nORA-06512: at line 7\\n'"
The problem with empty error message was fixed. Maybe not completly, but still.
I'm not sure) because now I get
"'ORA-06502: PL/SQL: numeric or value error: character string buffer too small\\nORA-06512: at line 7\\n'",
before, it works perfect when there is less data
Thanks, but still the same error
{:error, %DBConnection.ConnectionError{ message: "'ORA-06502: PL/SQL: numeric or value error\\nORA-06512: at line 7\\n'", severity: :error, reason: :error }}
Maybe it helps you, but when we use DBMS_OUTPUT.PUT_LINE(result) we got same error, if we just call procedure, it finishes successfully and we can get the result from log table (procedure write results of procedures to table)
max length 33554432 or 32k has not changed
Hi guys and thanks for all your amazing work!
I have a big trouble when trying to return a large character data from the stored procedure. Here's example:
This will work if I replace
4001
with4000
. Can you please help with this? Thought[out: :clob]
should work but seems it doesn't andvarchar
is using inout
instead.Thanks!