Is it possible to have two projects pointing to th...
# orm-help
t
Is it possible to have two projects pointing to the same database - one using Prisma, the other using Mongoose? Because right now, I cannot seem to get it to work.
r
Prisma, afaik, doesn't support mongodb yet
If you use an sql db, then that should have no problem
j
I dont think it should be a problem, I mostly wonder whether this opens an extra connection to the db for each requesr
r
Hey Taylor 👋 Could you try creating two different services, one that's already using Prisma via
prisma generate
and one that has the schema with Mongoose?