I am getting error while checking whether the ResultSet is closed or not, here is the actual error I got in netbeans 7.3 :
Exception in thread "AWT-EventQueue-0" java.lang.UnsupportedOperationException: Operation not yet supported at sun.jdbc.odbc.JdbcOdbcResultSet.isClosed(JdbcOdbcResultSet.java:6753)
Here is the code in which I got the error.
try{
if(!rs.isClosed());
rs.close();
}catch(SQLException ex){
JOptionPane.showMessageDialog(rootpane, ex);
}
Thanx in Advance for your help.