I have been reading up on Unicode with Python and Django and I think I
have my code set to use UTF8 data when saving or updating an object
but I get an error on model.save()

My database and all of its tables are UTF8 encoded with UTF8 collation
(DEFAULT CHARSET=utf8;)
The data I am inputting is unicode
(u'Save up to 25% on your online order of select HP LaserJet\x92s')
<type 'unicode'>

But when I try to save this data I get an error
Incorrect string value: '\\xC2\\x92s' for column 'title' at row 1

I assume I am missing something, but not sure what I am missing.

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
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