When executing a command issued from the the keyboard, for example using TAB for an uncached table definition or <ctrl> + E to generate explain plan, the hour glass is not shown.
I think the problem is that the command (database query) is executed in the same Thread as the keystroke is, thus the invokeLater() is never processed by the Thread.
The commands executed by the SqlKeyListener class should be executed in a different thread than the AWT-EventQueue.
// Morten
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=2016169
Originator: YES
I think the problem is that the command (database query) is executed in the same Thread as the keystroke is, thus the invokeLater() is never processed by the Thread.
The commands executed by the SqlKeyListener class should be executed in a different thread than the AWT-EventQueue.
// Morten