kysely-org / kysely

A type-safe typescript SQL query builder
https://kysely.dev
MIT License
10.22k stars 260 forks source link

MySQL SSL Connection? #333

Closed AshleyJackson closed 1 year ago

AshleyJackson commented 1 year ago

Hello,

I am attempting to use PlanetScale with Kysely and it is failing to connection due to an SSL issue.

Does Kysely support (Or have plans to support) SSL for MySQL? I've found a previous ticket about supporting SSL for PostgreSQL, but nothing about MySQL.

Thanks.

koskimas commented 1 year ago

You pass the mysql2 driver pool instance to the dialect. You can configure it using any options it supports. If it doesn't support it, then neither can kysely.

koskimas commented 1 year ago

If you are using this then you need to ask the question in their GitHub. We have no control over third party dialects.