Viewing 3 posts - 61 through 63 (of 63 total)
Also, if the rows are returned in the order they're inserted,
your code will double-convert sequences like:
>
which should expand to:
>
but your code will convert to:
>
The & to & conversion must happen...
January 21, 2009 at 9:26 pm
#930873
When you posted your article to the site, all your HTML escape codes were converted to their actual equivalents - so I see:
insert @htmltable values('&', '&')
instead of:
insert @htmltable values('&', '&')
(to...
January 21, 2009 at 3:12 pm
#930745
Is there any reason why you used NVARCHAR(128) rather than SYSNAME?
SYSNAME would make the script more portable between versions - and enforce restrictions on content.
January 19, 2009 at 5:23 pm
#929425