No Description

Kyle Conroy 11b39da6a7 I am (g)root 3 years ago
.github 11b39da6a7 I am (g)root 3 years ago
cmd 4ffadfb6e7 Fix name in go.mod (#64) 5 years ago
docs 3bf3469dac build(deps): bump babel from 2.9.0 to 2.9.1 in /docs (#1245) 3 years ago
examples 0d3508d6d2 fix(engine/mysql): Support nullable fields in joins for MySQL engine (#1249) 3 years ago
internal 0d3508d6d2 fix(engine/mysql): Support nullable fields in joins for MySQL engine (#1249) 3 years ago
pkg 6cea18db4b add pkg/cli package (#1204) 3 years ago
scripts 31143391cd When using pgx, map numeric types to pgtype.Numeric (#1143) 3 years ago
.gitignore 7141539736 mysql update docs with env vars, update test with json field, fill cleanup function wip see why error happens unkown json type with mysql engine (#742) 4 years ago
Dockerfile da832bb12f build(deps): bump golang from 1.17.1 to 1.17.2 (#1227) 3 years ago
LICENSE c1121ba320 Initial open source commit 5 years ago
Makefile 8cde4ef290 catalog: Improve variadic argument support (#804) 4 years ago
README.md bed10652d3 Add RStudio to list of sponsors (#1131) 3 years ago
docker-compose.yml 481f8927a8 Remove MYSQL_USER and MYSQL_PASSWORD from docker-compose.yaml (#1123) 3 years ago
equinox.pub 91d9f0a99b Automatically deploy master to Equinox (#46) 5 years ago
go.mod 0e4e99852f build(deps): bump github.com/pganalyze/pg_query_go/v2 (#1234) 3 years ago
go.sum 0e4e99852f build(deps): bump github.com/pganalyze/pg_query_go/v2 (#1234) 3 years ago
placeholder.go b6b5ae44f2 Compile the sql/ast and sql/ast/pg packages into one (#673) 4 years ago

README.md

sqlc: A SQL Compiler

go Go Report Card

sqlc generates type-safe code from SQL. Here's how it works:

  1. You write queries in SQL.
  2. You run sqlc to generate code with type-safe interfaces to those queries.
  3. You write application code that calls the generated code.

Check out an interactive example to see it in action.

Overview

Sponsors

sqlc development is funded by our generous sponsors, including the following companies:

If you use sqlc at your company, please consider becoming a sponsor today.

Sponsors receive priority support via the sqlc Slack organization.

Acknowledgements

sqlc was inspired by PugSQL and HugSQL.