On 5/8/2009 6:55 AM, consiglieri wrote: > I have a running perl/cgi app in conjunction with mysql which works > fine. > > For various reasons i want to move to either django or RoR. I've > pretty much decided to go with Django, however i'm wondering about one > thing. > > Ideally i would like to use the mysql database that i have, does > Django provide som good method for either converting a database for > use by Django? How have other people done when moving to Django. > > As the question shows i'm not exactly a pro at this, but i would > appreciate any and all constructive comments.
It depends on the complexity of your original application. If there aren't many tables/models, my advice would be to just rewrite everything from scratch, including the models, and do a data migration. There are couple things you'll want to look into: * inspectdb [1] * unmanaged models [2] Good luck, and welcome. [1] <http://docs.djangoproject.com/en/dev/ref/django-admin/#inspectdb> [2] <http://docs.djangoproject.com/en/dev/ref/models/options/#managed> -- George --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---