Hi, Is there a Image related data type in MySQL that can be used for storing images for each record. Appreciate your help.
Cheers! Anil
|
up vote
0
down vote
favorite
|
Hi, Is there a Image related data type in MySQL that can be used for storing images for each record. Appreciate your help. Cheers! Anil |
||
|
|
|
up vote
6
down vote
|
You'll need to use some sort of MySQL Reference: BLOB and TEXT types Which type you use depends on the size of the image you wish to store. |
||
|
|
|
up vote
4
down vote
|
Performance-wise it's probably better to store the file as a file on the drive and only write the filename or filepath and maybe the mime type into the database. But as the others say, |
||
|
|
|
up vote
1
down vote
|
Like said before, Why don't you index the file-name on the database and store the file on the server? The mainly reason to not allow something like this would be security issues. If you are really trying to cover your bases by not allowing all users to see or grab content you have two options. Option A) give the file a unique, non-identifiable name like Flickr does. The name of the file comprehends two hashes. A user hash and a file-hash. The second hash is secret and the only way you could get it would be by trial and error. Take a look into this file I have on Flickr. Is user-protected (only family can see) but you will be able to access it just fine. Option B) use a server side thecnology to limit the access. This method is safer but more expensive to the server. You will set up a script that will allow/deny access to the file based on session_permissions or something alike. Look at the following code that would be called by accessing something like: http://yourserver.com/getprotectedfile.php?filename=213333.jpeg
|
||
|
|
up vote
0
down vote
|
try the BLOB data type |
||
|
|