Skip to content

Commit

Permalink
add connection behaviour docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolasburk committed Jul 23, 2019
1 parent bc77588 commit 68bd606
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 66 deletions.
2 changes: 1 addition & 1 deletion docs/core/connectors/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ The Rust implementation for MySQL accepts connection strings, but it does not se
- `user`: The database user, e.g. `admin`.
- `password`: The password for the database user.
- `ssl`: Whether or not your database server uses SSL.
- `connection_limit` (coming soon): The connection limit specifies the maximum number of simultaneous connections that Prisma might have open to your database. Default: `1`.
- `connection_limit` (coming soon): The connection limit specifies the maximum number of simultaneous connections that Prisma might have open to your database. **Default**: `1`.
4 changes: 2 additions & 2 deletions docs/core/connectors/postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ postgresql://[user[:password]@][netloc][:port][,...][/database][?param1=value1&.
- `host`: The IP address/domain of your database server, e.g. `localhost`.
- `port`: The port on which your database server listens, e.g. `5432`.
- `database`: The name of the database with the target schema.
- `schema`: The name of the target schema. Default: `public`.
- `schema`: The name of the target schema. **Default**: `public`.
- `user`: The database user, e.g. `admin`.
- `password`: The password for the database user.
- `ssl`: Whether or not your database server uses SSL.
- `connection_limit`: The connection limit specifies the maximum number of simultaneous connections that Prisma might have open to your database. Default: `1`.
- `connection_limit`: The connection limit specifies the maximum number of simultaneous connections that Prisma might have open to your database. **Default**: `1`.

0 comments on commit 68bd606

Please sign in to comment.