i know this should be simpel and im probably staring straight at the problem but once again im stuck and need the help of the code gurus.
im trying too take one row
Did you mean something like:
int i = 0; ResultSet rs = stmt.executeQuery("select name from users"); while (rs.next()) { String name = rs.getString("name"); names[i++] = name; }