If you look in the <TableName>Manager->loadUsingTemplate(<BeanName> pObject, int startRow, int numRows)
There is an extra: StringBuffer where = new StringBuffer("");
Easy enough to remove from the template, just an FYI.
Same thing in:
public int countUsingTemplate($beanClass pObject) throws SQLException
Also, the private static final String TABLE_NAME = $tablename; is never used.
In the Manager class, the import: import java.util.*;
is also not used.
(I know this is a little nit picky, just meant as an FYI)
Log in to post a comment.
If you look in the <TableName>Manager->loadUsingTemplate(<BeanName> pObject, int startRow, int numRows)
There is an extra:
StringBuffer where = new StringBuffer("");
Easy enough to remove from the template, just an FYI.
Same thing in:
public int countUsingTemplate($beanClass pObject) throws SQLException
Also, the
private static final String TABLE_NAME = $tablename;
is never used.
In the Manager class, the import:
import java.util.*;
is also not used.
(I know this is a little nit picky, just meant as an FYI)