I've got a generic class which handles multiple data
types, I've got a 2nd data member to tell me the type.
Object oValue = null;
int iDBDataType = java.sql.Types.OTHER;
My getter and setter for oValue treats the data type as
an Object:
public Object getOValue() {return oValue; }
public void setOValue(Object oValue) { this.oValue =
oValue;}
The problem is in...
2006-10-12 18:33:08 UTC in JOX