ORM — Object-Relational Mapping
ORM maps database tables onto objects of a programming language. The developer works with objects instead of SQL. Examples: SQLAlchemy (Python), Hibernate (Java), Eloquent (PHP). ORMs increase productivity but can cause performance costs.