Any good `Prisma` alternative for other languages?
Are there any good Prisma alternatives for rust, go, kotlin and java backends?
I really like how Prisma generates raw sql code instead of language code, and Prisma Studio for ui to interact with DB.
I'd like to use those features in my backend which is not in js/ts and use rust(or any language I mentioned above).
(I'm not looking for a single solution for every language, it's good if there is one, but it's fine if every language has a different ORM that's on par with Prisma.)
Thank you π
9 Replies
i mean prisma is pretty much the single solution for every language - it has rust and go clients too
idk about other languages but rust has some good orm offerings
https://diesel.rs/
https://www.sea-ql.org/SeaORM/
SeaORM π An async & dynamic ORM for Rust
π SeaORM is a relational ORM to help you build web services in Rust
you could also make your own generator if you so desire
for other langs it's a bit trickier since u have to build your own mechanism for bundling the engines but yeah the other half is just making a generator
You donβt necessarily need to use the prisma query engine. I currently use prisma just for the schema management and migrations and have a generator that creates models for Laravel
Ah I was just talking about getting the full Prisma experience, we have plans to make another ORM that uses Prisma schemas but ditches the engines
that sound great. the prisma schema are honestly the best part about prisma
amen
that actually sounds promising, using prisma just for migrations is possible, but I wanted full prisma support for kotlin and go