Re: Using PostgreSQL Blob from Django

2010-06-25 Thread SlafS
Lately i found the django-storages app and DatabaseStorage[1] Haven't test it though. But using custom storage along with Django FileField seems like a good idea. Regards SÅ‚awek [1] http://code.welldev.org/django-storages/wiki/DatabaseStorage On 25 Cze, 04:26, Kenneth Gonsalves

Re: Using PostgreSQL Blob from Django

2010-06-24 Thread Kenneth Gonsalves
On Friday 25 June 2010 05:19:36 Daniel Espinosa Ortiz wrote: > I have a PHP application using PostgreSQL backend. I'm storing files > on the database. I have different tables with a file (OID), filename > and mime to detect the row's associated file. I'm trying to port this > application to

Using PostgreSQL Blob from Django

2010-06-24 Thread Daniel Espinosa Ortiz
I have a PHP application using PostgreSQL backend. I'm storing files on the database. I have different tables with a file (OID), filename and mime to detect the row's associated file. I'm trying to port this application to django. How Can Use this blob with django? Exist some suggestions about