On Sun, Feb 15, 2009 at 10:31 AM, DaSa <daniel.sandb...@gmail.com> wrote:

>
> Thx! But I have the correct chcp coding. I can write swedish signs in
> the promt, it is when I try to add them in the SQLite3 dB it goes
> wrong.
>
> I believe it is the "python manage.py shell" that can't handle swedish
> signs. If I insert an object containing swedish signs from the admin
> site and read it out in the "manage.py shell" I get weir signs.
>

That sounds like you may be hitting this Python issue:

http://bugs.python.org/issue1288615

If you are hitting that, it was fixed in Python 2.6 so you could try
upgrading.  Alternatively you could just patch whatever version of Python
you are running, it's a pretty simple fix:

http://svn.python.org/view/python/trunk/Lib/code.py?rev=65578&view=diff&r1=65578&r2=65577&p1=python/trunk/Lib/code.py&p2=/python/trunk/Lib/code.py


> Are there any other APIs I can use against the database?
>

Sure, just write a python script to do whatever you are planning on doing in
the interactive shell?  (It isn't entirely clear to me how using manage.py
shell is that much better than the admin interface for bulk data importing
-- I'd expect a script would be much better.  But maybe you are just trying
it out in the shell and concluding the script won't work because the shell
is not working.  If so, and if it is that Python issue, the script won't be
subject to the same problem so will likely work.)

Karen

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to