anonymous wrote : select o.strCountry from TblCountry as o
o.strCountry appears to be a column of type String. So the returned objects will be of
type java.lang.String. Your code:
anonymous wrote : TblCSCSubCategory region = (TblCSCSubCategory) myList.get(i) ;
will have to be changed to:
String country = (String) myList.get(i);
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3979264#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...