storing file content in DB - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T10:42:02Z http://stackoverflow.com/feeds/question/1078897 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1078897/storing-file-content-in-db 1 storing file content in DB ha22109 2009-07-03T11:15:13Z 2009-09-03T09:18:12Z <p>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</p> http://stackoverflow.com/questions/1078897/storing-file-content-in-db/1078987#1078987 2 Answer by Pascal Lindelauf for storing file content in DB Pascal Lindelauf 2009-07-03T11:37:25Z 2009-07-03T11:37:25Z <p>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.</p> http://stackoverflow.com/questions/1078897/storing-file-content-in-db/1081410#1081410 0 Answer by Glader for storing file content in DB Glader 2009-07-04T03:13:36Z 2009-07-04T03:13:36Z <p>Never store files in DB. It's ugly.</p> http://stackoverflow.com/questions/1078897/storing-file-content-in-db/1081421#1081421 1 Answer by Ron Savage for storing file content in DB Ron Savage 2009-07-04T03:24:22Z 2009-07-04T03:24:22Z <p>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).</p> <p>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.</p> <p>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.).</p> <p>Ron</p> http://stackoverflow.com/questions/1078897/storing-file-content-in-db/1372358#1372358 0 Answer by ha22109 for storing file content in DB ha22109 2009-09-03T09:18:12Z 2009-09-03T09:18:12Z <p>it is very easy</p> <p>just overide save method in admin</p> <p>filecontent=form.cleaned_data.get('upload_file')</p> <p>data =filecontent.read()</p> <p>from django.db import connection</p> <p>cursor = connection.cursor()</p> <p>cursor.execute("update filecontent set filecontent=(%s) where id=(%s)",[data,obj.id])</p> <p>connection.connection.commit()</p> <p>cursor.close()</p> <p>connection.close()</p> <p>this will store filecontent in db column filecontent of table filecontent</p>