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!
CodePudding user response:
Your configurations have been changed when you first run PLSQL debug. Go to your main project path find the .vscode
folder and delete launch.json
.
After you deleted launch.json
file, go to Run and Debug
and start a new python debug mode
CodePudding user response:
You can select the debug file type in Run and Debug.