Feat/vscode extension mssql - #29
Merged
Merged
Conversation
…onnection to the DB will depend on the extension "SQLTools".
…fork only works for MSSQL databases.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request migrates the SQL Data Inspector extension from Azure Data Studio to Visual Studio Code, focusing exclusively on Microsoft SQL Server (MSSQL) support through the official
mssqlextension. It removes support for MySQL and PostgreSQL, updates the extension's branding and documentation, introduces SQL command/result tracing, and modernizes the development and debugging setup.Migration to Visual Studio Code and MSSQL:
Migrated the extension to use the SQL Server (mssql) extension for connection management and query execution, dropping Azure Data Studio and support for MySQL/PostgreSQL. Only Microsoft SQL Server is now supported. (
package.json,README.md,CHANGELOG.md) [1] [2] [3] [4] [5]Updated extension name, display name, version, and icon to reflect the focus on MSSQL and Visual Studio Code. (
package.json,README.md) [1] [2]New Features:
sqlDataInspector.tracing.sqlCommandsto enable/disable this feature. (package.json,CHANGELOG.md,README.md) [1] [2] [3]Development and Debugging Improvements:
Replaced the build system with Vite, updated npm scripts, and removed ESLint and related configuration. (
package.json,.eslintrc.json) [1] [2] [3]Updated VS Code launch and tasks configurations for improved debugging and build workflows, including new build/watch tasks and launch profiles. (
.vscode/launch.json,.vscode/tasks.json) [1] [2]Documentation Updates:
README.mdto document the new connection model, usage instructions for Visual Studio Code, and removed references to Azure Data Studio and non-MSSQL databases. (README.md) [1] [2]Cleanup:
.eslintrc.json,.vscode/extensions.json) [1] [2]