Suppose I have a dictionary like this: data = { 'a':'1', 'b':'2', 'c':'3' }
and a model like this: class Test(models.Model): a = models.CharField(maxlength=8) b = models.CharField(maxlength=8) b = models.CharField(maxlength=8) I would like (in a python script) to be able to say t = Test(data) t.save() and have The Right Thing occur. Unfortunately, the script barfs at t.save(). Is there a way to do this? In real life, I'm trying to get data from a Postgres DB into Django's MySQL one (it's not possible to change either of these). All the fields have the same name for the respective tables. I'd like to take the dictionary provided by PyGreSQL and put that into MySQL using the Django API. TIA! -- James --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---