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.
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