i have this question about mysql data in a table... how can i insert an html text with tags, text, etc in a mysql table? What datatype do i need to store something like that and what do i need to encode or whatever i need to perform the insert? I'm using c# 4.0 and mysql connector 6.3.6

Thanks!

link|improve this question

75% accept rate
1  
possible duplicate How to store/retrieve HTML in MySQL using .Net (C#/VB) – R0MANARMY Jun 8 '11 at 12:38
feedback

1 Answer

up vote 0 down vote accepted

Use the TINYTEXT, TEXT, MEDIUMTEXT or LONGTEXT datatypes depending on how much data you are expecting.

If you are dealing with UTF-8 encoded html make sure that your collation matches that.

link|improve this answer
That works for me, thanks! I use to the HttpUtility.HtmlAttributeEncode for passing the html data – Phoenix_uy Jun 8 '11 at 13:10
feedback

Your Answer

 
or
required, but never shown

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