What problem does it solve? Setting up Prisma 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 configuration for PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and Prisma Postgres. - Driver Adapter Setup: Correct adapter and driver pairings for each database, including edge/serverless options like Turso and Prisma Postgres serverless. - Prisma Client Generation: Instructions for the prisma-client generator, output paths, and single-instance client patterns. - Use Case: When switching a Next.js app from SQLite to PostgreSQL, follow the PostgreSQL reference to update the schema provider, set the DATABASE_URL, install @prisma/adapter-pg, and regenerate the client. ## Quick Start Ask the AI to configure Prisma for your chosen database, for example: set up Prisma with PostgreSQL in my project including the driver adapter and client generation.