I am building a web site similar to Craigslist. I would like to know how to store the html formatted text (bold / italics / font size etc) in a sql 2008 database?

In order words, the user would enter their text, format it with font size, bold etc and save the information. Whats the most efficient way to store that in a database?

link|improve this question

feedback

6 Answers

up vote 4 down vote accepted

Save it to a nvarchar(max) field. Make sure you use parameterized queries for security. Read http://www.aspnet101.com/2007/03/parameterized-queries-in-asp-net/

link|improve this answer
2  
nvarchar(max) rather than varchar(max) because that will allow any unicode text to be stored such as chinese characters for example. – Daniel Dyson May 18 '10 at 12:28
there is no reason to encode it on sql field :) you eat a lot of space this way... with out reason and probably create errors or read write... – Aristos May 18 '10 at 12:44
feedback

I would probably just store the ad text as a nvarchar(max) datatype

link|improve this answer
feedback

Make sure only to allow a certain limited number of HTML tags or else you risk getting a cross script injection.

For example, don't allow your user to input <script> or <style> tags. I suggest you read more about cross script injection before you move on! Good luck

link|improve this answer
thats a good point. – user279521 May 18 '10 at 16:55
feedback

I would simply stuff it, as is, into a NVARCHAR(MAX) field.

Of course, you would use a parameterized query for this.

link|improve this answer
feedback

I would say just use a NVARCHAR(max) or Text data type as opposed to the XML data type.

This will allow easy access to the content where as the xml datatype would need converted somewhere along the line.

link|improve this answer
Good point. There are no guarantees that the HTML entered will be well formed XML – Daniel Dyson May 18 '10 at 12:24
feedback

I would put it in a nvarchar(MAX) field if you are using SQL Server 2008 or above otherwise. If you are using SQL Server 2005 or lower and if the number of characters will be below 2000 you could use an nvarchar(2000) type. If that is too restricting use a text type.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.