Alberto Schiabel

Results 301 comments of Alberto Schiabel

> I also had another look serde_wasm_bindgen and it makes sense now, though. It's still very green but it makes sense. That might be a way around adding wasm-bindgen dependencies...

Hi @piotrkulpinski, I wasn't able to reproduce this issue. Here's what I tried, using both Prisma versions `5.11.0` and `5.12.0-dev.45` (latest unstable version available). _Note: I've used Node.js 20.9.0, not...

I hoped that the unofficial `5.14.0-integration-static-wasm-worker-loader.5` Prisma version would fix it, but apparently that now gives me a new error > Uncaught ReferenceError: wasm_ba8a497110c853880f9c31c3460be3c21e86d7f4 is not defined This issue is...

Hi @XAMPPRocky, while I don't know any alternatives specifically for WASI, I do know a great resource for generating TypeScript bindings from Rust+WebAssembly projects: [tsify](https://github.com/madonoharu/tsify). I had actually given a...

@nzws I confirm that using the `5.14.0-integration-static-wasm-worker-loader.5` version of Prisma (not released officially yet), I can build and run [your project](https://github.com/nzws/prisma-with-nextjs-edge-import-problem-repro). Can you please try as well? @vegandiet705 @morgs32 @DannyNemer...

@simonmar, @kantp Hi, any update on this?

Something to take into account: `PRAGMA journal_mode=WAL` (or [other custom journal modes](https://www.sqlite.org/pragma.html#pragma_journal_mode), for that matter) are not supported in [Cloudflare D1](https://developers.cloudflare.com/d1/).

Hi @shwethashyam1, @Sytten, and @Venkat03003, we are investigating how to reproduce this issue. From my understanding, this issue presents itself when a long-running server has a Prisma Client connected to...

Let's note that, as of Prisma 3+, the schema above no longer results in `prisma validate` failing. ## `[email protected]` ```text ❯ npx -y [email protected] validate Prisma schema loaded from prisma/schema.prisma...

Interestingly enough, the result of `prisma validate` changes if the `url` is stored in and environment variable. Consider the following schema and .env files: ```prisma // prisma/schema.prisma datasource db {...