Uppercase reserved words also works inside quoted strings
Brought to you by:
wmmihaa
Hi,
I love the "Edit / Set reserved words to uppercase" thing,
but I've just noticed that if you happen to have any
reserved words inside quoted strings or comments, these
get uppercased too. for example:
/* This Returns Null */
declare @Title varchar(80)
set @Title = 'Not Found'
becomes:
/* This RETURNS NULL */
DECLARE @Title VARCHAR(80)
SET @Title = 'NOT Found'
Thanks for a great piece for software,
Dunc.
Logged In: YES
user_id=478685
This is using version 4, btw.