I want to connect to oracle and get some records.
java.sql.ResultSet r = s.executeQuery("Select * from table1");
while (r.next()==true) {
System.out.println(r.getString("column1").toString());
}
table1 include like that rows
- row1 movieName1
- row2 movieName2
- row3
- row4 movieName2
I get "Exception in thread "main" java.lang.NullPointerException" error when I execute above code. How can I fix it ?
.toString()on a String reference. – Gandalf Oct 4 '11 at 10:43