I have Sample applicaion Flex+Java(using mysql database).
Actually i’m sending search result from flex to java method it is working one value.
for ex: we are giving flex textbox value---- "java" ------it is working fine
but we are giving more then two keywords forex: java,flex—-it is not working
Here is mysql query:
from Course where coursename in (:name)
and setting parameter….
transform the string “java,flex” into a collection e.g. with split(‘,’) and then feed it to the query.