What database works best with Prisma? Hi everyone....
# orm-help
a
What database works best with Prisma? Hi everyone. I’m pretty new to all this and am creating a personal project that I hope to deploy to production. What database would you use with Prisma for a fairly simple app with light traffic.
d
"Works best" is hard to quantify. If you don't have any special requirements, you can't go wrong with any supported database. The most feature complete / tested implementations are the SQL connectors: MySQL and PostgreSQL. Mongo is still a fresh release and might hit some bumps along the road. Pick whatever you feel comfortable with from those 3.
a
Thanks dpeterick! I usually use MongoDB but maybe I’ll try something new this time.