aspose file tools
The moose likes JDBC and the fly likes jdbc cancel query Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "jdbc cancel query" Watch "jdbc cancel query" New topic
Author

jdbc cancel query

Selvan tiru
Greenhorn

Joined: Jul 12, 2001
Posts: 18
Hello :
is there a way to cancel a SQL query that takes long time to get the results
set in JDBC. Basically once a query is submitted
a prorgess bar or progress moniter should
display,which gives the user a chance to cancel.
Once cancelled the program control comes back
Any ideas, suggestion
thanks
Selvan
Omar IRAQI
Ranch Hand

Joined: Jul 06, 2001
Posts: 54
Hi Selvan tiru,
If you had taken a look to the Statement Interface methods, you would have found that the method cancel(), answers exactly your question. This method assumes that both the driver and the database server support this operation.
Now if you are using a stored procedure to execute your query, you can still use the cancel() method since the CallableStatement and the PreparedStatement are both derived from the Statement Interface.
regards.
[This message has been edited by Omar IRAQI (edited July 12, 2001).]


Omar IRAQI Houssaini
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: jdbc cancel query
 
Similar Threads
Cancel database query....
JTable linked to a query[jdbc], may used and in Applets
help in my first DBCP
Killing a thread waiting for db query execution
JDBC doesn't retrieve all the results available in the MSSQL database