Hi, what is the best data type to store Urls?.
I need save on database file system path for pictures.
thanks
Hi, what is the best data type to store Urls?.
I need save on database file system path for pictures.
thanks
varchar
. Choose a suitable max length based on your domain knowledge.
URLs are strings and will be of variable lenghts.
If your database system supports this, use VARCHAR.
We tend to save them as urlencoded VARCHAR
s. (Since our URLs are coming to the database from a server, we encode them using PHP's urlencode
and then decode them when we retrieve them with urldecode
.) Don't think there's really much else that needs done - you could probably just store them as unencoded VARCHAR
s.