I have a search page with multiple search options(input text boxes) Based on the search criteria entered , I need to create a dynamic search query. (I need search results based on the fields for which user inputs some value)

link|improve this question
feedback

3 Answers

or you can use <af:quickQuery> for a simple search. Here's the sample code taken from Oracle demo.

<af:quickQuery label="Search" id="search" searchDesc="search" binding="#{editor.component}" value="#{demoQuickQuery.queryDescriptor}" queryListener="#{demoQuickQuery.processQuery}">

</af:quickQuery>
link|improve this answer
feedback

If you are using ADF/BC, this is built-in. Just use the <af:query/> component.

link|improve this answer
feedback

af:query is the more robust of the two query components, but does require you create a viewcriteria object in the VO that will be the basis for the query. However it is very powerful: dynamically add new attributes to the query at runtime, change query rules (starts with, contains, etc)

af:quickquery allows you to choose one and only one attribute to query on at a time.

Please note: these components (and the executewithparms) are the only supported query methods in ADF Faces 11g

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.