I want to create a jasper report which changes the query and add/removes additional conditons in its where clause based on the input provided by the user in the jasper server. One option is to sql inject the querystring in the jrxml file, but that looks messy as we may have additional conditions in the where clause which may be added. The other approach mentioned in this post Dynamic querystring in JRXML seems to be a good one.
I would like to know how can I access the control parameters in the java code passed from jasper server?
Or can I give some kind of conditional logic within the jrxml file? which checks if some of the input controls are empty then assign one query in the queryString variable and another query if other conditions are valid?
Thanks.