String cols[][][] = new String[7][2][]; int colcount[] = new int[7];
int i=0;
while (rs.next()) {
cols[0][0][i] = rs.getString(1);
cols[0][1][i] = rs.getString(2);
colcount[0] += rs.getInt(2);
i++;
} // end while

how do i check if the value in
cols[0][1][4] is null ?

maybe , but not likely :-

if (cols[0][1][4] is null) ?

thanks

http://members.xoom.com/lookads