Is there a data conversion issue with DB2 or Can someone tell me what I'm missing in this code. Even though
string(2) is ABC it always prints out "didnt" ???
type = rs.getString(7);
if (type.equals("ABC")) {
out.println("worked");
}
else{
out.println("didnt");
}
Thanks