ORMs are widely used. Django (python web application framework) uses SQLAlchemy. Hibernate is popular for Java programs. ORMs speed up SQL application development, reduce the amount of template code you need to write, and hide which database you use from the rest of the application. Performance may suffer using ORM, so be prepared to tweak things as needed.
Spike gronim
source share