diff --git a/apps/docs/content/docs/postgres/faq.mdx b/apps/docs/content/docs/postgres/faq.mdx index 439bb06d3b..f2083f8ede 100644 --- a/apps/docs/content/docs/postgres/faq.mdx +++ b/apps/docs/content/docs/postgres/faq.mdx @@ -12,7 +12,14 @@ Common questions about how Prisma Postgres works, how queries are billed, and ho ### Can I use Prisma Postgres without Prisma ORM? -Yes, you can use Prisma Postgres with any database library or tool via a [direct connection](/postgres/database/direct-connections). +Yes, you can use Prisma Postgres with any database library or tool via a [direct connection](/postgres/database/connection-pooling). + +You can find examples of using Prisma Postgres with various ORMs below: +- [Prisma ORM](https://github.com/prisma/prisma-examples/tree/latest/databases/prisma-postgres) +- [Drizzle](https://github.com/prisma/prisma-examples/tree/latest/databases/drizzle-postgres) +- [Kysely](https://github.com/prisma/prisma-examples/tree/latest/databases/kysely-postgres) +- [TypeORM](https://github.com/prisma/prisma-examples/tree/latest/databases/typeorm-postgres) + ### How do I switch from GitHub login to email and password login?