Hi,
Where can i get information/source codes/sites(If it already exists) for automatically generating java Code(Template . ie; it can select fields from a table ..see it's descriptions and then
generate a source code) using perl.
for eg: The generated code may look as follows:
where Employee is the table connected to. The fields
EMPLOYEE NUMBER etc has been made as private.
Function templates can also be written such as getEmployeeNbr().
class Employee {
private int employeeNbr;
private String designationCde;
...
private String lastNme;
public int getEmployeeNbr() { return employeeNbr; }