skip to Main Content

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


  1. 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.

    pic

    After you deleted launch.json file, go to Run and Debug and start a new python debug mode

    Login or Signup to reply.
  2. enter image description here

    You can select the debug file type in Run and Debug.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search