On Sat, 2007-04-07 at 12:28 +0200, Paul Rauch wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Hello,
> 
> >test = bla(rights={'bla':'blupp'})
> >test.save()
> >Traceback (most recent call last):
> >  File "<console>", line 1, in <module>
> >  File "/usr/lib64/python2.5/site-packages/django/db/models/base.py",
> >line 242, in save
> >    ','.join(placeholders)), db_values)
> >  File "/usr/lib64/python2.5/site-packages/django/db/backends/util.py",
> >line 12, in execute
> >    return self.cursor.execute(sql, params)
> >
> >rights = models.TextField()
> 
> the "easiest" way seems to easy.
> ok, so how can I store a dict in the database?

Presumably you realise why this fails now: a TextField only stores text,
not Python object.

So turn your Python object into a string: look at the Pickle and cPickle
modules in the standard Python library.

Regards,
Malcolm


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to