what would be the easiest/most efficient way to read the values, that have been put in the buffer already?
I have something like this:
Dbms_Output.Put_Line('a -> 3');
Dbms_Output.Put_Line(a);
And I want to know if I can put anything in my JDBC Sampler, which can read the value of "a" and return it as a response, so I can use it as a parameter in my next request?
I was thinking about Dbms_Output.Get_Line(s), but not sure what should be the syntax and if this will solve my issue.
Thanks in advance!