String Index out of range Exception in jdbc programming
Sep 19, 2013 at 15:29. perhaps there really aren't that many columns in the ResultSet. -- instead of a SELECT * FROM query, perhaps try selecting individual columns-- and the JDBC driver will throw a different exception if you try to SELECT a column that does not exist in the table. So, like: SELECT columnName1, columnName2, columnName3 ...