(Think this is a java problem!!!)
When I print a result set of a mysql query it doesn't print the 1st value.
I used
ResultSet rs = stmt.executeQuery("Select * from names");
while(rs.next()){
textAr.append(rs.getString("name")+"\n");
}
This prints the values from index 2.. How can i print all the values.???
thankx in advance...