Vector results = new Vector();
// Populate the object(s).
for ( int i=0; i<rows.size(); i++ )
{
Record rec = (Record)rows.elementAt(i);
int oid = rec.getValue(1).asInt();
int sec = rec.getValue(2).asInt();
int min = rec.getValue(3).asInt();
int hr = rec.getValue(4).asInt();
int wd = rec.getValue(5).asInt();
int d_m = rec.getValue(6).asInt();
String task = rec.getValue(7).asString();
String email = rec.getValue(8).asString();
byte[] objectData = (byte[])rec.getValue(9).asBytes();
Hashtable tempHash = (Hashtable)ObjectUtils.deserialize(objectData);
JobEntry je = new JobEntry(sec, min, hr, wd, d_m, task);
je.setPrimaryKey(oid);
je.setEmail(email);