queryCompiler and driverAdapter for local development
I am looking to make use of Prisma 6.11's new support for rust-free MySQL development through
queryCompiler
queryCompiler
and
driverAdapter
driverAdapter
preview features.
In production we use PlanetScale for our database and deploy our application through CF workers and Vercel functions. For CF workers we need to use the rust-free edge client with the planetscale adapter. I have this mostly working, but I am trying to get parity with our local development environment which uses a MySQL db through docker.
I thought I would be able to swap in the MariaDB adapter, but that doesn't seem to be working with my local db. Queries don't seem to fail, but everything returns null. Curious if anyone has a similar setup that is working.