Different question: Does Prisma handle SQL injecti...
# orm-help
b
Different question: Does Prisma handle SQL injection for me or do I have to do that myself?
1
t
It's handled for you, unless you use $executeRawUnsafe or $queryRawUnsafe with raw SQL
b
Alright, thank you!