DynamoDB adapter?

Neither Prisma nor Drizzle support DynamoDB. Should I just roll my own, or is there another recommended adapter for DynamoDB, even if it's not in the create-t3-app command?
1 Reply
Sean
Sean2mo ago
DynamoDB is a NoSQL db and drizzle and prisma are mainly created for SQL dbs (even though you can use mongo with prisma - please avoid that before you regret it). You can use official aws package for dynamoDb in order to use it

Did you find this page helpful?