Visualize a SQLite instance while native debugging in Visual Studio.
-
Technologies: Visual Studio 2017 SDK
-
Topics: Visual Studio Debugger, SQLite
Description
This sample provides a complete example of how to create a native debug visualizer in Visual Studio.
- The project sample will create a VSIX that can be used to installed via the extension manager.
Requirements
Get all samples
Clone the repo (How to):
git clone https://github.com/Microsoft/VSSDK-Extensibility-Samples.git
Run the sample
- To run the sample, hit F5 or choose the Debug > Start Debugging menu command. A new instance of Visual Studio will launch under the experimental hive.
- Once loaded, open a native project in the newly launched Visual Studio that uses SQLite.
- Set a breakpoint near a variable of type
sqlite3 *
. - Hit F5 or choose the Debug > Start Debugging menu command in the newly launched Visual Studio to launch the loaded project.
- When the breakpoint set above is hit, press the small magnifying glass in the Locals window.
Related topics