I'm building a Java application that uses a database. I used MySQL for database and JDBC for its connection.
My application will process a lot of data so it will take much time and I'm afraid when the computer loses its power by accident or something else. Is there a way to resume the process, so it won't process from the beginning?
insertI'm be able to know how many row has been inserted, but forselectI don't know how, so I must rerun theselectprocess. – Fahmi Ramadhan Oct 12 '12 at 2:52