When designing a class to use as a POJO, you can use a Java Project, a J2EE Utility Project, or a Crystal Reports Web Project.
Your POJO class must have a schema that is compatible with a table in your report. The names and types are case insensitive, but they must match.
Note: The SDK supports only non
The following data types are supported:
char
byte
java.lang.Byte
short
java.lang.Short
int
java.lang.Integer
float
java.lang.Float
double
java.lang.Double
boolean
java.lang.Boolean
java.lang.String
java.SQL.Date
java.SQL.Time
At runtime, the POJO class must be in your classpath. For example, for a Crystal Reports Web Project, the POJO class must be in WEB
An example of a POJO class named ReportData is shown in the next section.
public ReportData(String firstName, String lastName, int age, Date birthDay)
public int getAge() {return age;}
public Date getBirthDay() {return birthDay;}
| Business Objects http://www.businessobjects.com/ Support services http://www.businessobjects.com/services/support/ |