IT lexicon Database ORM

ORM Object-Relational Mapping

Database På svenska → Updated: 2026-05-23

Library that lets you talk to the database via objects instead of SQL.

User.find({email: "..."}) instead of SELECT * FROM users WHERE .... Prisma (TS), SQLAlchemy (Python), ActiveRecord (Rails), Hibernate (Java). Convenient for simple queries; clunky for complex — many fall back to raw SQL.

← Back to the lexicon