Monday, May 30, 2011

Django models

Database are the backbone of any website, and database interactivity is a very important aspect of any server side programming.

As you all might be knowing that there are multiple vendors offering different databases. And usually in other established web development frameworks database queries are so tightly integrated with the code that any change in the backend database results in necessary changes in the code.

But not in django, Models are there for that service.

Models take care of the sql part for you and make it possible for the developer to concentrate on developing in a uniform language ( python ). Any change in the database can be handled by just making changes in settings.py file.

That's what i call intelligent development.

Regards,
Ishan

No comments:

Post a Comment