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 …
2
votes

Easy way to export a SQL table without access to the server or phpMyADMIN

You might consider looking at: http://www.webyog.com This is a great GUI admin tool, and they have a really neat HTTP-Tunneling feature (I'm not s …
-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 …
2
votes

Best practices for withstanding launch day traffic burst

I would at least factor out all static content. Setup another vhost somewhere else and load all the graphics/css/js onto it. You can buy some extra cycles offloading the serving of that type of c …
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 …
2
votes

Where to store uploaded files (sound, pictures and video)

I would go for the database option. I've used it on a number of projects, some very larger 100+GB. The storage implementation is key, design it poorly and your performance will be punished. See …
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 …
0
votes

MySQL max_allowed_packet param whats the catch?

I suggest not touching this variable, instead adjusting your storage implementation to handle any size files using the default settings. Can you see …
3
votes

Is there a way to see a prepared query as it will be executed on the database?

Turn on mysql query logging and it will log all queries to a text file for you to review. …
3
votes

How to split data over MySQL tables

I would definately split the 'messages' table into multiple. Eg: MessageStatus Message MessageText This way if your displaying a list of items in someone inbox, you only need to sc …
1
vote

mysql: can’t set max_allowed_package to anything grater than 16MB

Extending the max_allowed_packet for this reason is the result of a bad implementation. I suggest reading this article/implemen …
0
votes

How can i insert large files in mysql db using php?

The best answer is to use an implementation that is better and also works around that issue. You can read an article here. Stor …