Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PejmanNik/sqlops-spexecutesql-to-sql
Convert sp_executesql to sql
https://github.com/PejmanNik/sqlops-spexecutesql-to-sql
sp-executesql sql sqlopsstudio
Last synced: 4 days ago
JSON representation
Convert sp_executesql to sql
- Host: GitHub
- URL: https://github.com/PejmanNik/sqlops-spexecutesql-to-sql
- Owner: PejmanNik
- Created: 2018-11-12T22:25:04.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-09-17T02:29:51.000Z (about 1 year ago)
- Last Synced: 2024-08-01T16:46:36.094Z (3 months ago)
- Topics: sp-executesql, sql, sqlopsstudio
- Language: TypeScript
- Size: 410 KB
- Stars: 33
- Watchers: 5
- Forks: 5
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Convert sp_executesql to sql
This extension can be helpful in debugging SQL query executed by your application (e.g some of ORM like EF)
## Features
press `F1` and type `Convert` command to run convertor on active query.
![gif](https://raw.githubusercontent.com/PejmanNik/sqlops-spexecutesql-to-sql/master/images/convert.gif)
## Installation
The current release is available to [download as a .vsix file](https://github.com/PejmanNik/sqlops-spexecutesql-to-sql/releases/download/1.0.0/sqlops-spexecutesql-to-sql-1.0.0.vsix) and can be installed by opening the command palette (`ctrl/command+shift+p`) and selecting `Extensions: Install from VSIX...`## Thanks to
Inspiring from https://github.com/mattwoberts/execsqlformat. so Thank you @mattwoberts.## Release Notes
## [1.0.3] - 2020-06-29 - @gerneio
### Enhancement
- Support converting multiple sp_executesql statements [#6](https://github.com/PejmanNik/sqlops-spexecutesql-to-sql/pull/6)## [1.0.2] - 2020-01-04
### Fixed
- fix bug in parsing double quote in the query## [1.0.1] - 2019-09-07
### Fixed
- fix bug in regex for reading query with extra white character## [1.0.0] - 2019-06-30
### Fixed
- fix a bug in format document
- improve the experience with modify selection and scrolls position## [0.0.2] - 2018-12-18
### Fixed
- fix bug in sp_executesql with an unnamed parameter value## [0.0.1] - 2018-11-13
- Initial release