Hi,

I created a Sub in my WinForm which basically executes a stored procedure using Connections, Commands, Parameters etc. Command.CommandType is set to StoredProcedures always but command text may vary. Now I want to be able to run more than 1 StoredProcedure in parallel but I also need a way to terminate a running StoredProcedure if needed.

What methods / approaches can I use for this requirement?

I'm currently using Visual Studion 2008 Professional and Oracle Express Edition 11g for my database.

Thanks.