We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following code can be used to reproduce the problem
DECLARE var1 number := 0; BEGIN var1 := :SQLT_VNU_INOUT_VAR1; var1 := var1 + 1; end;
Error produced is ORA-01459: Ungültige Länge für variable Zeichenfolge
ORA-01459: Ungültige Länge für variable Zeichenfolge
Workaround would be to use a seperate IN and OUT parameters as follwoing
DECLARE var1 number := 0; BEGIN var1 := :SQLT_VNU_IN_VAR1; var1 := var1 + 1; :SQLT_VNU_OUT_VAR2 := var1; END;
The text was updated successfully, but these errors were encountered:
c-bik
No branches or pull requests
Following code can be used to reproduce the problem
Error produced is
ORA-01459: Ungültige Länge für variable Zeichenfolge
Workaround would be to use a seperate IN and OUT parameters as follwoing
The text was updated successfully, but these errors were encountered: