Hi,
In the presentation you made for PL/SQL Developper, while an operation is done we can continue to work. It seems not to be
the case while generating with plsqldoc. Does this work as intended ?
Thank you
In the presentation you made for PL/SQL Developper, while an operation is done we can continue to work. It seems not to be
the case while generating with plsqldoc. Does this work as intended ?
Multi-threaded IDE
PL/SQL Developer is a multi-threaded IDE. This means that you can continue to work as SQL queries are executing, PL/SQL programs are executing, debug sessions are running, and so on. It also means that the IDE will not "hang" if you make a programming error: you can break execution or save your work at any time.
Thank you