Good time of day, Community!
I run several SQL via DBMS_sql package. Each of that SQL has a set of bind variables.
Is there any feature to get a list of variables' names for given SQL?
For instance.
I wonder to get a list of ':name',':result' for the next statement:
select *
from dual
where :result = :name
With respect!