Re: Binary Data fields?

2007-02-19 Thread voltron
Thanks for the answers, I wanted this because of portability reasons. I wanted to store small avatar images with a user profile in the database. No Image paths to configure and a backup of the database holds all the important data of the users. Everything in one place. On Feb 19, 10:55 pm,

Re: Binary Data fields?

2007-02-19 Thread Honza Král
On 2/19/07, voltron <[EMAIL PROTECTED]> wrote: > > How would I go about saving images in a database? The imageField saves > images in the file system, how can I cleanly in a Djangoish way > override this? django currently doesn't support BLOBs so there is no way to do that in a clean django

Re: Binary Data fields?

2007-02-19 Thread Collin Grady
There's no quick way - django does not currently support binary types :) There is a patch in trac somewhere that's a start on it, but there would be no promises on how well it works :) On Feb 19, 1:52 pm, "voltron" <[EMAIL PROTECTED]> wrote: > How would I go about saving images in a database?

Binary Data fields?

2007-02-19 Thread voltron
How would I go about saving images in a database? The imageField saves images in the file system, how can I cleanly in a Djangoish way override this? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django