Craig,
I was wondering how your idea would work if I'm setting some properties in a 
Class and then adding the object to the vector.
Something like,
Vector v = new Vector();
while(resultset.next())
{
MyClass cls = new MyClass();
cls.setName(resultSet.getString("nameColumn"));
v.addElement(cls);
}
I'd be using v.elementAt(0).getName() in my sql statement again to perform a 
query. I got this running fine but i was hoping i would make the best use of 
the iterate tag which required direction from a person like you.

Thanks,
Raghu..


_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com

Reply via email to