Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update database connector docs #5459

Merged
merged 2 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metaDescription: 'This page explains how Prisma can connect to a PostgreSQL data

The PostgreSQL data source connector connects Prisma to a [PostgreSQL](https://www.postgresql.org/) database server.

By default, the PostgreSQL connector contains a database driver responsible for connecting to your database. You can use a [driver adapter](/concepts/components/database-drivers#driver-adapters) <span class="concept"></span> to connect to your database using a Node.js database driver.
By default, the PostgreSQL connector contains a database driver responsible for connecting to your database. You can use a [driver adapter](/concepts/components/database-drivers#driver-adapters) <span class="concept"></span> (Preview) to connect to your database using a JavaScript database driver from Prisma Client.

</TopBlock>

Expand Down
2 changes: 1 addition & 1 deletion content/200-concepts/200-database-connectors/04-mysql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metaDescription: 'This page explains how Prisma can connect to a MySQL database

The MySQL data source connector connects Prisma to a [MySQL](https://www.mysql.com/) database server.

By default, the MySQL connector contains a database driver responsible for connecting to your database. You can use a [driver adapter](/concepts/components/database-drivers#driver-adapters) <span class="concept"></span> to connect to your database using a Node.js database driver.
By default, the MySQL connector contains a database driver responsible for connecting to your database. You can use a [driver adapter](/concepts/components/database-drivers#driver-adapters) <span class="concept"></span> (Preview) to connect to your database using a JavaScript database driver from Prisma Client.

</TopBlock>

Expand Down
2 changes: 1 addition & 1 deletion content/200-concepts/200-database-connectors/05-sqlite.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metaDescription: 'This page explains how Prisma can connect to a SQLite database

The SQLite data source connector connects Prisma to a [SQLite](https://www.sqlite.org/) database file. These files always have the file ending `.db` (e.g.: `dev.db`).

By default, the SQLite connector contains a database driver responsible for connecting to your database. You can use a [driver adapter](/concepts/components/database-drivers#driver-adapters) <span class="concept"></span> to connect to your database using a Node.js database driver.
By default, the SQLite connector contains a database driver responsible for connecting to your database. You can use a [driver adapter](/concepts/components/database-drivers#driver-adapters) <span class="concept"></span> (Preview) to connect to your database using a JavaScript database driver from Prisma Client.

</TopBlock>

Expand Down
Loading