very basic one here. I wrote some Python code that worked fine, then used VS Code for SQL work.
Now I want to reuse Python and try as I might I can’t get it to Run without first Debugging in PLSQL Debug. Even if I choose Run -> Run Without Debugging the terminal doesn’t load the results of the Python script. Instead I get in the Debug Console:
"Debug started on port 4000, waiting on the client to connect…"
I am sure there is a straightforward answer to this, but how do I get back to VS Code treating my Python code like Python code? Thanks!
2
Answers
Your configurations have been changed when you first run PLSQL debug. Go to your main project path find the
.vscode
folder and deletelaunch.json
.After you deleted
launch.json
file, go toRun and Debug
and start a new python debug modeYou can select the debug file type in Run and Debug.