sqlc
Generate type-safe code from SQL
About sqlc
sqlc: A SQL Compiler
sqlc generates type-safe code from SQL. Here's how it works:
- You write queries in SQL.
- You run sqlc to generate code with type-safe interfaces to those queries.
- You write application code that calls the generated code.
Check out an interactive example to see it in action, and the introductory blog post for the motivation behind sqlc.
Overview
Supported languages
Additional languages can be added via plugins.
Sponsors
Development is possible thanks to our sponsors. If you would like to support sqlc, please consider sponsoring on GitHub.
Frequently Asked Questions
What is sqlc?
sqlc is a Database library for the Go programming language. Generate type-safe code from SQL
How do I install sqlc?
Install sqlc with the Go module system using `go get kyleconroy/sqlc`. Check the repository for the current installation instructions.
What category does sqlc belong to?
sqlc is listed under Database, specifically SQL Query Builders.