On 8/26/06, Eugene Pyvovarov <[EMAIL PROTECTED]> wrote:
>
> hello everybody. I'm new in django... just want to create base apps
> from tutorial on djangoproject website.
> I am using mysql 4.1 and python 2.4, django from svn
> When I create database in iso-8859-1 - all stuff working good, but when
> I befin to do the same website and making my database in utf-8 encoding
> - I have folowing errors, when I want to authorize in the system as
> admin:
>
> Inherite view http://paste.e-scribe.com/1334/
> Copy\paste view: http://paste.e-scribe.com/1335/
>
> please help me..

You apparently have a binary collation, which causes MySQLdb to return
text-like columns as arrays of characters. There are enough use cases
that this breaks that I'm going to fix it in MySQLdb-1.2.2 (beta
perhaps this weekend). In a nutshell, binary collations make character
columns (CHAR, VARCHAR, TEXT) come back as arrays. I'm going to change
this so they come back as normal strings. Non-binary collations will
cause  them to be returned as unicode strings if use_unicode=True;
otherwise they will also be strings.
-- 
This message has been scanned for memes and
dangerous content by MindScanner, and is
believed to be unclean.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to