Quick question. Minimal drama. If I'm using a RDBMS like MySQL, can I save a media file (like an image for example) to a database as a BLOB (or any other datatype)? How would I "render" the BLOB? What about videos?
In the past, I have just saved the file to the file system and then saved a permalink (relative/absolute path) in the database. When I want to retrieve the media file, I typically use the permalink to access the media.
Now I'm wondering, "Why can't I just save the media file to the database?"
What do?