The Enhanced* classes don't really seem to be enhanced versions of their
standard counterparts.  For example, EnhancedResultSet has this method:

public Long getLongObject(String column) throws SQLException {
    return new Long(getLong(column));
}

How is that enhanced over the standard rs.getObject(col) which performs
automatic type conversions or new Long(rs.getLong(col)) ?

To use these enhanced methods you must cast to the specific implementation
class you're using which is a poor practice.  It's been nearly a year
since they were first committed and haven't been updated since.

If no one is opposed, I'll remove these classes tommorrow.

David

__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to