ORM - CI/CD Glossary Definition
An ORM (Object-Relational Mapping) library maps database tables to language objects so you query with code instead of raw SQL. Convenient, but it can mask N+1 queries and slow plans.
Related guides
N+1 Query - CI/CD Glossary DefinitionThe N+1 query problem is running one query to fetch a list, then one extra query per item - turning a page lo…
Migration (Schema) - CI/CD Glossary DefinitionA schema migration is a versioned, scripted change to a database structure, applied in order so every environ…
Prepared Statement - CI/CD Glossary DefinitionA prepared statement is a pre-parsed SQL template with bound parameters, reused across executions - it speeds…