Hi Jason,<br> <br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">When creating a table in MySQL varchar supports a length of up to 255<br>

characters. Does anybody know what I use if I want to support say 10000 or<br>
even higher?<br>
</blockquote><div><br>This is going to depend somewhat on what version of MySQL you are using.  Newer versions allow you to specify varchar up to varchar(65535).  For example, see <a href="http://dev.mysql.com/doc/refman/5.1/en/char.html">http://dev.mysql.com/doc/refman/5.1/en/char.html</a><br>
<br>If you need more than that, consider using the 'text' data type.  <a href="http://dev.mysql.com/doc/refman/5.1/en/blob.html">http://dev.mysql.com/doc/refman/5.1/en/blob.html</a><br>Before you use text data types you should read up on the various differences between it and varchar in terms of text encoding, padding, indexing, storage and efficiency.  It's all mentioned in the online manual, but you need to look around in a few places for it.<br>
<br>Cheers,<br> - Richard<br><br></div></div>