Has anyone been able to integrate Prisma with some...
# orm-help
c
Has anyone been able to integrate Prisma with something like IntegreSQL? The only thing I can find to that extent is this old blog post: https://stories.abletech.nz/what-does-it-mean-to-go-serverless-183582231cdd I’ve been working through this approach but it doesn’t seem like Prisma likes the approach of disconnecting then reconnecting to different URLs.
r
@Casey Chow 👋 Disconnect should work fine. I have been using them for my tests in a similar manner. What’s the error you’re getting?
c
I think our use cases are slightly different--the goal with IntegreSQL is to connect to a new database for every test. I’m just getting a cannot connect error, though I may need to troubleshoot further on my end:
Copy code
● Test suite failed to run

    Can't reach database server at `localhost`:`5432`

    Please make sure your database server is running at `localhost`:`5432`.
r
Is it possible to connect it with the credentials provided locally?