Good morning all...<br><br>I am doing a front-end database application that connects to a ODCB database (Access)<br>The program is able to connect. In the program I have a button to move to the next record and a button that moves to the previous record. I tried with just with the next button using next(); And it worked...Then I tried with the previous(); and oh oh..it did not..I realised I had to include this code <br>hospStatement = conSql.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);<br>I did but still when I pushed the previous button...It gave me an exception saying <br>Java.lang.UnsupportedOperationException<br>So...am stuck with going forward only <br>Can you please help me..as of the reason to this???