I'm very new to jdbc. I hope you can help. How can I automatically connect to the database when my program somehow got disconnected from it. What if I'm already accessing for example the 4th row then I got disconnected. How could I go back to where I got disconnected? Can you please show it by editing my codes below. Thank you in advance. panday <PRE> import java.sql.* ; class DbBroker { static Connection c = null ; static Statement s = null ; static String dbUrl = "jdbc dbc:Books" ; static ResultSet rs = null ;