Comments
1 comment
-
You have to put stuff like this in brackets:
IF (@qwe > 0) BEGIN .. .. .. END -- IF (@qwe > 0) ELSE BEGIN
I am assuming you mean the comments. I like ths comment idea. This would be especially useful for newsgroup posts from dyslexic programmers (which for me is a large value of this tool.) Too often code has twenty layers of code that is just impossible to read.
Add comment
Please sign in to leave a comment.
IF (@... = @xyz)
BEGIN
..
..
some more code
..
..
IF (@... > 0)
BEGIN
..
..
..
END -- IF (@... > 0)
ELSE
BEGIN
..
..
..
END -- ELSE -> IF (@... > 0)
END -- IF (@... = @xyz)
Hope you see what I meant..
BTW, why don't my tabs show up in the posts??
Dean Vitner