Julius de Bruijn

Results 174 comments of Julius de Bruijn

Cannot replicate this either with 4.1.0 or 4.3.1. Is the connection string given in the issue the one that triggers the error? Could you maybe give us a reproduction in...

Confirmed. Here's a step-by-step reproduction: `.env` ```shell DATABASE_URL="mysql://root:prisma@localhost:3307/prisma" ``` `schema.prisma` ```prisma generator client { provider = "prisma-client-js" } datasource db { provider = "mysql" url = env("DATABASE_URL") } model Article...

We have this exact problem in Prisma. All logs disappeared when doing a routine `cargo update`. Spent a few hours, found the culprit was `tracing-subscriber` going from 0.3.11 to 0.3.15....

We took the approach of passing the env in the constructor and it seems to work well.

Yep. Formatting is not supposed to be adding code, just formatting it.

And instead of fixing, we should guide our users to utilize their editors instead of magic commands. And provide them the best tools to autofill missing things in the schema.

All the database crates must use rustls for this to work out. We tried with Tiberius and SQL Server for one version, and got bug reports back for certain SQL...

You can start by looking into getting tokio-postgres and mysql_async working with rustls. Then do a PR to quaint, and another one to engines that enables a feature flag, switching...

So what it does is it gets the node headers for windows to build against. You can read the source procedure in https://github.com/napi-rs/napi-rs/blob/main/build/src/windows.rs. Hope this helps you forward!