I have startDatealso endDateas input parameters. These parameters are used in the request:
SELECT * FROM patientRecords
WHERE patientRecords.dateOfdischarge BETWEEN $P{startDate} AND $P{endDate}
Now, since startDateand endDateare the parameters that are passed to JasperReports.
I have to make sure they are in mm/dd/yyyyDate format .
How can I convert an input parameter to this format with iReport?
user471450
source
share