Antonio Cangiano is asking for help and ideas. Being himself the former author of the Rails tools for the IBM DB2 DBMS he’s searching for input for the development of a set of tools and drivers for Python, Django an DB2.
I think it’s a great idea having that kind of support in Django, even maybe if I won’t be using DB2 anytime soon. So, if you do care about Django and Python send your ideas to him and we’ll all make one enterprisey step ahead




One Comment
i am using the same but this code is giving an warning I/O warning
class Thing(models.Model): name = models.CharField(blank=False, null=False, maxlength=30) photo = models.ImageField(upload_to=’images/things/’, blank=True, null=True)
class ThingForm(forms.Form): name = forms.CharField(max_length=30, required=True, label=(‘Name of the thing’)) photo = forms.Field(widget=forms.FileInput, required=False, label=(‘Photo’)
i wrote this code to upload image when i save this code .. it is showing an I/O warning :
non-ascii found, yet no encoding declared.Add a link like
-- coding: cp1252 --
to your file click ok to save this file as cp1252