Glossary

ORM (Object-Relational Mapping)

A technique that maps database tables to programming language objects, allowing database operations through object methods rather than raw SQL. **SQLAlchemy** is Python's primary ORM. (Ch. 18)

Learn More

Related Terms