아카이브

[DB][Prisma] Prisma에 대해서 본문

Backend/DB

[DB][Prisma] Prisma에 대해서

Rayi 2024. 8. 22. 19:07

PrismaNode.jsTypescript기반의 ORM(Object-relational mapping) 라이브러리중 하나입니다.

Prisma는 직관적인 CRUD 문법과 관리가 편한 GUI를 제공한다는 장점이 있습니다.

 

※ ORM(Object-relational mapping) : DB의 데이터 형식(schema)과 실제 객체(object)를 매핑하여 관계(relation)를 맺어 준 뒤, 이를 바탕으로 SQL을 자동으로 생성해주는 방식. 예를 들어 JavaScript 코드만을 작성하여 SQL을 자동 생성할 수 있음.

 

https://www.prisma.io/

 

Prisma | Simplify working and interacting with databases

Build, fortify, and grow your application easily with an intuitive data model, type-safety, automated migrations, connection pooling, caching, and real-time database subscriptions.

www.prisma.io

 

728x90

'Backend > DB' 카테고리의 다른 글

[DB][Prisma] model & migration  (0) 2024.08.23
[DB][Prisma] Prisma 시작하기  (0) 2024.08.22
[PostgreSQL] PostgreSQL 설치하기  (0) 2024.08.22
[PostgreSQL] PostgreSQL에 대해서  (0) 2024.08.22
[SQLite] SQLite browser 사용하기  (0) 2023.09.11
Comments