vote up 1 vote down star

I am making a model in which i have a filefield.I wan to store file content in the DB column instead of file path.ANy suggestions

flag

19% accept rate
Why do you want to do that? Files belong on the filesystem. – Daniel Roseman Jul 3 at 12:39
How much binary data do you expect to store in the database? There is a big difference between storing a few binary objects in the database when compared to storing thousands of large binary files. – Kane Jul 4 at 4:23
Yes. What is the rationale of that decision? Why not store them on the FS? – exhuma Sep 3 at 9:20

4 Answers

vote up 2 vote down

Well, how about simply storing it in a Binary column? You can then store collection of bytes. And if the filename is important to you as well, you can store that in an additional name column.

link|flag
vote up 0 vote down

Never store files in DB. It's ugly.

link|flag
vote up 1 vote down

Disregard the naysayers. If you want to have full control over your content, put the files in a blob field in the database. I generally also keep the filename in a separate field, so I can reconstruct the file as necessary (that way you keep the extension, which ties it to a file type in most operating systems).

Be sure to store the actual blob data in a separate table, only connected to your filename / extra info table via an id ... that way you don't sacrifice any performance when dealing with any information related to the file other than the content itself.

What the naysayers fail to realize, is that databases are simply an extremely optimized form of file system. Bytes are bytes and disc sectors are disc sectors. Databases are simply much better at organizing and searching those bytes than file systems are. Not to mention, databases implement much more stringent security than most file systems and are better maintained (with backups, support staff etc.).

Ron

link|flag
i only want to store the filecontent in db column of a table ,not interested in wasting table for it.I can regain the file content again in same patern. – ha22109 Sep 3 at 10:23
vote up 0 vote down check

it is very easy

just overide save method in admin

filecontent=form.cleaned_data.get('upload_file')

data =filecontent.read()

from django.db import connection

cursor = connection.cursor()

cursor.execute("update filecontent set filecontent=(%s) where id=(%s)",[data,obj.id])

connection.connection.commit()

cursor.close()

connection.close()

this will store filecontent in db column filecontent of table filecontent

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.