4 Replies
There's a logging parameter when initializing the drizzle client that should do what you want, print out the SQL in the console.
Drizzle ORM - Goodies
Drizzle ORM is a lightweight and performant TypeScript ORM with developer experience in mind.
@JT or you can use
.toSQL()
method:
Thank you!