skip to Main Content

I have recently updated my Visual Studio 2022 Enterprise to version 17.10.1. When debugging SQL from within VS, I encounter the error

Frame not in module (the current stack frame was not found in a loaded module. Source cannot be shown for this location).

How can I resolve this issue?

I tried restarting Visual Studio and reloading the project. I also ensured all necessary modules were loaded and checked for any updates or patches. Despite these efforts, the Frame not in module error persists. I was expecting the debugger to properly load the stack frame and display the source code for the current location.

2

Answers


  1. Microsoft broke SQL Server debugger with version 17.10.1 of VS 2022 try to rollback.

    Everyone on our company is unable to debug.

    Login or Signup to reply.
  2. Same here.
    VS 2022 version 17.10.1

    Connecting to sql
    then running the script -> it works
    but debugging the script -> fails with ‘Frame not in module’

    I have used VS versions s

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