nestjs-prisma-crud
nestjs-prisma-crud copied to clipboard
Question: What Database Connectors are currently supported for the crud framework?
Is there any roadmap for the support of all database connectors that Prisma supports?
- [ ] PostgreSQL
- [ ] MySQL
- [ ] MongoDB
- [ ] SQL Server
- [ ] SQLite
- [ ] CockroachDB
Hi. The library should work fine with any relational database supported by prisma.
I personally use it in projects with PostgreSQL, MySQL and SQLite. I have yet to try it with SQL Server.
The limitations section of the docs mentions that JSON support is currently lacking for all databases. This means Mongo and Cockroach will not work at the moment. I do wish to tackle that limitation when I have some time and I would also accept pull requests for it.