Hello,

I installed a new Server with DB2/LINUXX8664 10.5.7, Django 1.8.13, ibm_db 
2.0.7 and  ibm_db_django 1.0.9.2. 
After restoring my database on the  new system (source was also db2 with 
django 1.7) I have the problem that the check boxes in the admin area shows 
wrong data. All Check boxes are selected and ignore the values from the 
database.

If I query the data in the django shell I got 1 and 0 instead of  True and 
False  (Booleanfields)
To except errors in my code I have created a fresh  django project and I 
see the same issue.



Python 2.7.11+ (default, Apr 17 2016, 14:00:29) 
[GCC 5.3.1 20160413] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from polls.models import *
>>> for  i  in Dummy.objects.all():
...  print i.isboo ,  i.noboo
... 
1 0
1 1
0 0

from the models 

class Dummy(models.Model):
        isboo = models.BooleanField(default=True)
        noboo = models.BooleanField(default=False)


Regards,
             Uwe 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/2b8906e0-4fd3-4a4b-b225-0155f4bea193%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to