Sorry Marco:
We Can currently use the FindVariables function to return a list of bind variables in a SQL statement.
What if a user wants you to supply potential values for the bind variables in a SQL statement? You have to know at least what column in the SQL statement each bind variable refers to first before you can try and search for potential values from the database.
Was wondering if there is any easy way we can do find bind variables AND additionally know which column each bind variable references.
i.e.
select *
from atable
where col1 = :a
and col2 = :b
Find bind variable :a, which references column col1.
Find bind variable :b, which references column col2.
I you know which column a bind variable belongs to, then you at least have some start on being able to search and supply a user with potential values for the bind variable.