In a MySQL database, how would I set a varchar to have unlimited length, so that I can store long web pages? IF not , then what is the Maximum Size?
I know about Text Ty
You can use varchar2. It is better than varchar in many ways
http://www.orafaq.com/faq/what_is_the_difference_between_varchar_varchar2_and_char_data_types
Or
You can try TEXT. It will work for you