I am working on an application which is in Django. I am trying to store some data structure e.g. dictionary in MySQL db. So i use Python Pickle module. It works fine when i store it in db using pickle.dumps(some_structure). My DB field is longblob mode is binary.

But when i access the field of model object in django:

obj = someModel.get(pk=1)
some_structure = obj.field
content  = pickle.loads(some_structure)

it raises following error:

UnpicklingError: invalid load key, '{'.

Please help me, i have tried google but it does'nt help me, also there is one similar Question but it is not related to my problem as i am storing in db.

link|improve this question

I would suggest pickling your data to store it in the database is not the correct way to go about this. You should store your data in the database correctly, transforming your data into tables and fields. – Lattyware Nov 13 '11 at 11:21
The data is in complex hierarchy (nested dictionaries). I can not save it in form of tables and fields. The data is result of some process which i later need to process in django on another View. – Aamir Adnan Nov 13 '11 at 11:39
1  
Then JSON is probably a better format than pickle. JSON is cross-platform, whereas pickle is implementation-specific. – Daniel Roseman Nov 13 '11 at 12:02
Anyway pickled data is not possible to filter. – Melug Nov 13 '11 at 12:18
What model field type do you use? – alex vasi Nov 13 '11 at 13:47
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.