Search Results

0
votes

Binary Data in MYSQL

A much better storage implementation in available here: http://www.dreamwerx.net/phpforum/?id=1 You'll run into issues with Flor …
-1
votes

Do you recommend PostgreSQL over MySQL?

I'm totally for storing BLOB's in the DB with the correct schema. If not already, consider using a meta table with fixed length columns for faster seeking/delete/update. Store the BLOBS/files in …
3
votes

What is the best way to store media files on a database?

I think storing them in the database is ok, as long as you use a good implementation. You can read this older but good article for ideas on how to keep the larger amounts of data in the database f …
0
votes

MySQL data modeling.

Have a base object, then use polymorphism to subclass that base object. The base object stores all the shared data (in 1 table).. Then each subclass has it's unique properties and sources them fro …