Which column type should I use for storing HTML of an unknown size?
What column type should I use for storing html content from a website with an unknown size?
(I'm scanning certain html pages, and create an database entry if there are cha开发者_JS百科nges between the last stored entry and the current html code.)
My database is a MSSQL 2008 express database.
Use varchar(max)
精彩评论