What problem does it solve? Setting up Prisma ORM with the correct database provider, connection string, driver adapter, and client generation involves many version-specific details that are easy to get wrong, especially with the differences between Prisma 6 and Prisma 7 workflows. ## Core Features & Use Cases - Provider-Specific Guides: Step-by-step setup references for PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and Prisma Postgres. - Driver Adapter Configuration: Maps each database to the correct @prisma/adapter-* package and JS driver, with instantiation examples for PrismaClient. - Version-Aware Guidance: Distinguishes Prisma 7 SQL adapter workflows from the Prisma 6.x path required for MongoDB projects. - Use Case: When initializing a new Node.js project with PostgreSQL, follow the reference to set the datasource provider, configure prisma.config.ts with the DATABASE_URL, install @prisma/adapter-pg, and generate Prisma Client with an explicit output path. ## Quick Start Ask the AI to configure Prisma with PostgreSQL in your project, including the schema datasource, environment variable, driver adapter, and client generation steps.