EXEC SP Comma Placement
sdingle
Posts: 15 New member
Hi,
I don't know if I am just missing a setting somewhere but on Format > Commas & parentheses I have it set to 'place comma at start'. This option isn't be respected when auto-fill an execute statement for an SP with parameters. My desire is that the parameter have the commas at the start but instead they are at the end. Example below:
when I would have expected
SQL Prompt Version 7.2.4.291
SSMS 12.0.2569.0
Thanks
Steve
I don't know if I am just missing a setting somewhere but on Format > Commas & parentheses I have it set to 'place comma at start'. This option isn't be respected when auto-fill an execute statement for an SP with parameters. My desire is that the parameter have the commas at the start but instead they are at the end. Example below:
EXEC dbo.MySP @param1 = '', @param2 = '', @param3 = ''
when I would have expected
EXEC dbo.MySP @param1 = '' ,@param2 = '' ,@param3 = ''
SQL Prompt Version 7.2.4.291
SSMS 12.0.2569.0
Thanks
Steve
Comments