Overview

Data sources

Data sources enable Prisma to connect to your database. This page explains how to configure data sources in your Prisma schema

A data source determines how Prisma ORM connects to your database, and is represented by the datasource block in the Prisma schema. Connection details (such as the database URL) are configured in Prisma Config. The following data source uses the postgresql provider:

datasource db {
  provider = "postgresql"
}

A Prisma schema can only have one data source. However, you can:

Securing database connections

Some data source providers allow you to configure your connection with SSL/TLS by specifying certificate locations in your connection configuration.

See the database-specific documentation above for examples of SSL/TLS connection configuration in Prisma Config.

On this page