Can we bind parameter(s) to RTC Query?
One answer
I had a quick look into the API and I easily found these methods:
IQueryDescriptor.hasParameterVariables();
IQueryDescriptor.setParameterValues(parameterValues)
Having said that, the setParameterValues() method is deprecated and there is no hint how the replacement should look like (4.0.1 API) and I was also not able to easily find other references.
If the query has parameters, you could try that. I don't know how to create Expressions with parameters though.
IQueryDescriptor.hasParameterVariables();
IQueryDescriptor.setParameterValues(parameterValues)
Having said that, the setParameterValues() method is deprecated and there is no hint how the replacement should look like (4.0.1 API) and I was also not able to easily find other references.
If the query has parameters, you could try that. I don't know how to create Expressions with parameters though.