开发者

Storing HTML in SQL Server

开发者 https://www.devze.com 2023-02-28 16:25 出处:网络
What data type should I us开发者_运维问答e to store HTML content in SQL Server 2008? It\'s for dynamic content for a CMS.VARCHAR(MAX) if it\'s all going to be ascii-based, say for basic HTML tepmplat

What data type should I us开发者_运维问答e to store HTML content in SQL Server 2008?

It's for dynamic content for a CMS.


VARCHAR(MAX) if it's all going to be ascii-based, say for basic HTML tepmplates

NVARCHAR(MAX) if the HTML could contain any content

NVARCHAR will double your storage use as it uses double the amount of space as VARCHAR. HTML itself does not require NVARCHAR, only the content in-between the HTML tags could based on the language, etc..

Edit:

Many years on from giving this answer I almost always use NVARCHAR now if there is any between the tag content. Unicode is popular...

I only use VARCHAR if just storing simple html templates, eg tags and placeholders
eg: <div><span>[PLACEHOLDER]</span><div>

Make the call based on your use-case..


Put it in an NVARCHAR(MAX) (or smaller).
HTML is no different from other text.


Data type should I use to store HTML content in SQL Server 2008

You must used Nvarchar(Max) if you want to store multiple language text.

otherwise use VARCHAR(MAX) if you want to store English language text.

nvarchar(max) contain more amount of spance compare to varchar(max)

0

精彩评论

暂无评论...
验证码 换一张
取 消