Vector Problem !

Hi , I hav little problem while i am using Vector concept.Howcan i add the diffrenet values from 3 different tables as a single element in vector ?Thanks & RgMerlina
[204 byte] By [MerlinRosinaa] at [2007-10-2 1:48:08]
# 1
By stuffing them into one custom object and adding that to the vector, which you shouldn't be using in the first place. But I guess you were already told that 20 times, so I give up repeating it.
CeciNEstPasUnProgrammeura at 2007-7-15 19:29:21 > top of Java-index,Java Essentials,Java Programming...
# 2
List item = new ArrayList();item.add(tableValue1);item.add(tableValue2);item.add(tableValue3);myVector.addElement(item);
MartinHilperta at 2007-7-15 19:29:21 > top of Java-index,Java Essentials,Java Programming...