Skip to content

Commit

Permalink
Update mysql.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolasburk committed Feb 19, 2020
1 parent 2ffd3d7 commit 23f4d70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/core/connectors/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ See the [official documentation](https://dev.mysql.com/doc/refman/8.0/en/connect
- `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.
- `socket`: If you want to connect via sockets, this parameter must specified a file path to the socket you want to use, e.g.: `/var/run/mysqld/mysqld.sock`. (Learn more in this [GitHub issue](https://github.com/prisma/prisma2/issues/525)).
- `socket`: If you want to connect via sockets, this parameter must specified a file path to the socket you want to use, e.g.: `"mysql://root@localhost/dbname?socket=(/tmp/mysql.sock)"`.
- `connect_timeout`: The maximum number of seconds to wait for a new connection. **Default**: `5`.
- `socket_timeout`: The maximum number of seconds to wait until a single query terminates. **Default**: `5`.
- `socket_timeout`: The maximum number of seconds to wait until a single query terminates. **Default**: `5`.

0 comments on commit 23f4d70

Please sign in to comment.