我正在寻找一种将 Next.js 应用程序与 Azure Database for PostgreSQL 服务器连接的方法。Prisma 似乎与 Next.js 配合得很好,但我无法确定连接字符串,或者它是否是受支持的数据库。
示例:DATABASE_URL = 'postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public'
我尝试连接的主机:posgreservertest.postgres.database.azure.com:5432
所以它应该类似于“...@posgreservertest.postgres.database.azure.com:5432/mydb?”。
我正在尝试npx prisma introspect
,这就是我的 cmd 的样子:
PS C:\Web stuff\nextjs\test> npx prisma introspect
Environment variables loaded from prisma\.env
Prisma schema loaded from prisma\schema.prisma
Datasource "db": PostgreSQL database "postgres", schema "public" at "posgreservertest.postgres.database.azure.com:5432"
Introspecting based on datasource defined in prisma\schema.prisma …
Error: P1001
Can't reach database server at posgreservertest.postgres.database.azure.com:`5432`
Please make sure your database server is running at posgreservertest.postgres.database.azure.com:`5432`.
是否可以使用 Prisma 连接到 Connect to Azure Database for PostgreSQL 服务器,因为它在其支持的数据库中没有此选项?