Vercel Edge Functions + tRPC + Prisma + CockroachDB
Is it possible right now to run Prisma with CockroachDB with tRPC within Vercel edge functions? If so, how would I go about doing that? Are there any drawbacks?
Solution:Jump to solution
Without Accelerate, no.
Unfortunately Vercel Edge Functions support a pretty limited set of database drivers that does not include CockroachDB.
So, without a db driver to use, we can't create support for other databases (such as Cockroach). ...
3 Replies
Anybody?
Solution
Without Accelerate, no.
Unfortunately Vercel Edge Functions support a pretty limited set of database drivers that does not include CockroachDB.
So, without a db driver to use, we can't create support for other databases (such as Cockroach).
You can use Accelerate that would definitely work 🙂
Thank you, I will look into using Accelerate to make this work