Nullpointer Exception Error Java Help me solve this | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Nullpointer Exception Error Java Help me solve this

public void tableDetails() { DefaultTableModel dtm=(DefaultTableModel) jTable1.getModel(); dtm.setRowCount(0); try{ Connection con=ConnectionProvider.getcon(); Statement st=con.createStatement(); ResultSet st=rs.executeQuery("select from room"); while(rs.next()) { dtm.addRow(new Object[](rs.getString(1),rs.getString(2),rs.getString(3)}); } } catch(Exception e) { JOptionPane.showMessageDialog(null,e) } }

4th Nov 2021, 1:50 AM
Dipankar Borah
5 Answers
+ 1
Brother do you any whatsapp or telegram I will send the project over there so that u can look the matter
4th Nov 2021, 2:19 AM
Dipankar Borah
+ 1
It doesn't shows the line and also it doesn't shows any errors but when I try to run the program it shows the error
4th Nov 2021, 2:25 AM
Dipankar Borah
+ 1
Hmm, maybe checking the following functions can help. "getModel" and "createStatement" Because if you're getting a null pointer exception, that means you're using an object reference that doesn't actually refer to an object, but to a null pointer reference. In the snippet you provided, only these functions are returning an object so maybe one of them returned a null pointer reference. Try this and tell if it worked
4th Nov 2021, 5:09 AM
Rishi
Rishi - avatar
0
Save your complete code in code playground and share it's link here so that it's easy to reproduce your error and help you =)
4th Nov 2021, 2:16 AM
Rishi
Rishi - avatar
0
Dipankar Borah no I don't have =( Can you say exactly in which line the exception is being shown?
4th Nov 2021, 2:24 AM
Rishi
Rishi - avatar