Glossary coding Term Page ORM Bridges Python objects and DB tables so you can do CRUD without hand-written SQL object-relational-mapper #coding#fastapi Korean version Aliases Object Relational Mapper Related Concepts SQLModelSQLiteSessioncreate_engine Core Idea ORM is Bridges Python objects and DB tables so you can do CRUD without hand-written SQL. It usually makes the most sense alongside SQLModel, SQLite, Session. Why It Matters Here Mathbong reuses this term across fastapi posts as shared vocabulary. Posts Mentioning This Concept [FastAPI 시리즈 9편] SQLModel로 데이터베이스 첫걸음 SQLModel과 SQLite를 사용해 FastAPI 애플리케이션에 지속 가능한 데이터 저장소를 붙이는 과정을 정리합니다.[FastAPI Series 9] First steps with SQLModel and databases Learn how to save your FastAPI data with SQLModel and SQLite. This guide walks step by step through connecting a real database to your app and handling basic data operations.