数据源
数据源决定 Prisma ORM 如何连接你的数据库,并由 Prisma 架构中的 datasource
块表示。以下数据源使用 postgresql
提供程序,并包含连接 URL
datasource db {
provider = "postgresql"
url = "postgresql://johndoe:mypassword@localhost:5432/mydb?schema=public"
}
Prisma 架构只能有一个数据源。但是,你可以
注意:在 2.22.0 中移除了对多个提供程序的支持。请参阅 提供程序数组表示法的弃用 了解更多信息。
保护数据库连接
一些数据源 provider
允许你使用 SSL/TLS 配置你的连接,并为 url
提供参数以指定证书的位置。
Prisma ORM 相对于 ./prisma
目录解析 SSL 证书。如果你的证书文件位于该目录之外,例如你的项目根目录,请使用证书的相对路径
datasource db {
provider = "postgresql"
url = "postgresql://johndoe:mypassword@localhost:5432/mydb?schema=public&sslmode=require&sslcert=../server-ca.pem&sslidentity=../client-identity.p12&sslpassword=<REDACTED>"
}