Forum Moderators: open
I thought that varchar could only have a max of 200 chars?
As long as you are using 5.0.3 and above you can make a varchar up to 65535 characters long. It'll be less if you have more columns since 65535 is the max row size as well.
What are the benefits of using longtext long blob and blob?
Longtext just allows a lot of characters. Blob and long blob store the same binary data but just have different storage limits.
If you do not have to search through the html pages you are storing then I suggest you compress them before you store them since most html pages are bloated with whitespace anyway.
JAG