I need to store a url in a MySQL table. What's the best practice for defining a field that will hold a URL with an undetermined length?
|
|||||||||||||||
|
|
|
|||||
|
|
varchar(max) for SQLServer2005 varchar(65535) for MySQL 5.0.3 and later This will allocate storage as need and shouldn't affect performance. |
|||||||||||||
|
|
Most browsers will let you put very large amounts of data in a URL and thus lots of things end up creating very large URLs so if you are talking about anything more than the domain part of a URL you will need to use a TEXT column since the VARCHAR/CHAR are limited. |
|||
|
|
|
I don't know about other browsers, but IE7 has a 2083 character limit for HTTP GET operations. Unless any other browsers have lower limits, I don't see why you'd need any more characters than 2083. |
|||
|
|
|
Most web servers have a URL length limit (which is why there is an error code for "URI too long"), meaning there is a practical upper size. Find the default length limit for the most popular web servers, and use the largest of them as the field's maximum size; it should be more than enough. |
|||
|
|
|
varchar(max) which means varchar (65535). This will even store your bigger web addresses and will save your space as well!!! |
|||
|
|
|
You'll want to choose between a TEXT or VARCHAR column based on how often the URL will be used and whether you actually need the length to be unbound. Use VARCHAR with maxlength >= 2,083 as micahwittman suggested if:
Use TEXT if :
|
|||
|
|
