Skip to content

Commit

Permalink
minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
ruheni committed Oct 23, 2023
1 parent 045af58 commit 19b2c88
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions content/200-concepts/100-components/drivers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ generator client {
npx prisma generate
```

Prisma officially adapters for the following database providers:
## Serverless drivers

By default, JavaScript database drivers use TCP connections. Several database providers enable use of different protocols such as HTTP and WebSocket to connect to your database such as Neon, PlanetScale and Turso.

Prisma officially adapters for the following serverless database providers:

- [Neon](#neon)
- [PlanetScale](#planetscale)
Expand All @@ -43,10 +47,6 @@ The following is a list of community maintained driver adapters:

- [TiDB](https://github.com/tidbcloud/prisma-adapter)

## Serverless drivers

By default, JavaScript database drivers use TCP connections. Several database providers enable use of different protocols such as HTTP and WebSocket to connect to your database such as Neon, PlanetScale and Turso.

### Neon

Install the Prisma adapter for Neon, Neon serverless driver and ws:
Expand Down Expand Up @@ -129,6 +129,6 @@ const adapter = new PrismaLibSQL(libsql)
const prisma = new PrismaClient({ adapter })
```

[Learn sum mo](https://www.prisma.io/blog/prisma-turso-ea-support-rXGd_Tmy3UXX#get-started-with-prisma-and-turso)
<!-- [Learn sum mo](https://www.prisma.io/blog/prisma-turso-ea-support-rXGd_Tmy3UXX#get-started-with-prisma-and-turso) -->

<!-- TODO: feedback link -->

0 comments on commit 19b2c88

Please sign in to comment.