sqlc: compile SQL queries, no ORM!
sqlc is a framework that makes it easier to access a database from an application _without_ being an ORM. In particular, you don't have a “fluent” query API in your programming language that (hopefully) covers all of SQL’s capabilities. Instead, you just write SQL queries. sqlc compiles those into native functions/methods to perform the queries and retrieve the results.