How to create parallel threads in Oracle forms..
I need to acheive the following on my User Interface developed using Oracle Forms 10g
1. Execute a stored procedure. This procedure is a long procedure and takes around 20-30 minutes.
2. While the above procedure is running I want to call a set of select statements and display those results to the user.
I wish to do 1 and 2 parallely.
In normal programming languages like Java this is done by creating two threads using the Runnable Interface. Please let me know whether this is possible in Oracle Forms and if yes,how to do this.
-- Nihita