I'm trying to unpickle a blob column called "rules". The problem is that I don't know what the data type of the output is, and I think that's what's causing my error. If I do a SELECT on the column, an example value is:

"x?u??J?0?I?Az?9???YOp??5t?&??n,??#?:t????n????wbB?HAh??" (and so on)

I'm trying to unpickle it in python with:

rules_dict = cPickle.loads(rules)

And I get the following error:

"cPickle.UnpicklingError: invalid load key, 'x'"

Obviously 'x' is what's at the beginning of the column, so I should be doing this a different way..just not sure how. I'm not really sure where to go from here. Thanks!

link|improve this question
This question might be related to your problem. I would tend to say that the data has been altered. – badzil Jun 9 '11 at 23:39
Are you in control of the pickling side of the system? Does it work if you pickle with protocol 0? – Russell Borogove Jun 10 '11 at 0:06
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.