I have a java application, which searches for some records in oracle on click of search button. It calls stored procedures to search the data in oracle tables. Sometimes the search output is very large and takes a lot of time to process, I want to implement a cancel button so that the operation can be cancelled at any time. I thought of implementing separate thread in java but it wont solve the problem because the stored procedure is already called. How can i achieve this?
Asked
Active
Viewed 1,185 times