--
----------------- http://djangoproject.jp/ -----------------
You received this message because you are subscribed to the Google Groups "django-ja" group.
To post to this group, send email to djan...@googlegroups.com
To unsubscribe from this group, send email to django-ja-...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/django-ja
今このスレッドをみてふっと思ったんですが、pickleからの文字列をbase64にまたかける必要があるでしょうか。
data = pickle.dumps(array)
dataって、すでに文字配列ですからそのままCharFieldとして保存することもできるはずなんで、取り出すときも
array = pickle.loads(data)
になるんではないかと思いますが、base64にする必要があるでしょうか。
2010/9/1 kidd alex <sale...@gmail.com>: