Hi
I have the following problem in Eclipse birt
The dataSetRow["AREA_CODE"] is case sensitive. DataSetRow["area_code"] gives a error;
org.eclipse.birt.report.engine.api.EngineException: Column binding "AREA_CODE" has referred to a data set column "AREA_CODE" which does not exist.
Do you know if there is way to use dataSetRow case insensitive.
|
References to column names are also case-sensitive. In this expression, row["CUSTOMERNAME"] is the correct name to use. If you type row["customername"], for example, BIRT Report Designer displays an error when you run the report. You can verify the capitalization of a column name by looking at the name that is displayed in Data Explorer.
I guess that you can try DataSetRow["area_code".toUpperCase()]
|