storing file content in DB - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T10:42:02Zhttp://stackoverflow.com/feeds/question/1078897http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1078897/storing-file-content-in-db1storing file content in DBha221092009-07-03T11:15:13Z2009-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#10789872Answer by Pascal Lindelauf for storing file content in DBPascal Lindelauf2009-07-03T11:37:25Z2009-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#10814100Answer by Glader for storing file content in DBGlader2009-07-04T03:13:36Z2009-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#10814211Answer by Ron Savage for storing file content in DBRon Savage2009-07-04T03:24:22Z2009-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#13723580Answer by ha22109 for storing file content in DBha221092009-09-03T09:18:12Z2009-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>