No Description

Kyle Gray 30546ea8c9 Update README.md 1 year ago
.devcontainer d460c5d1ee Upgrade to Go 1.20 (#2105) 1 year ago
.github 0de01abb76 cmd/sqlc: Bump version to v1.22.0 (#2776) 1 year ago
cmd d361c5d580 chore!: Rename kyleconroy/sqlc to sqlc-dev/sqlc (#2523) 1 year ago
docs b2e42f8e8d docs: Add stable anchors to changelog (#2784) 1 year ago
examples 0de01abb76 cmd/sqlc: Bump version to v1.22.0 (#2776) 1 year ago
internal b9b630a7dc chore(endtoend): Fix test output for do tests (#2782) 1 year ago
pkg 3b48228691 chore: Finish migration to sqlc-dev/sqlc (#2548) 1 year ago
protos 33398b730d feat(config): Enables the configuration of copyfrom.go similar to quierer and friends (#2727) 1 year ago
scripts 63b5f90727 cmd/sqlc: Bump version to v1.21.0 (#2705) 1 year ago
.gitignore c269459151 chore: Ignore Vim swap files (#2616) 1 year ago
.readthedocs.yaml 1663392017 docs: Add a ReadTheDocs config file (#2327) 1 year ago
Dockerfile 3856ef31a1 build(deps): bump golang from 1.21.0 to 1.21.1 (#2711) 1 year ago
LICENSE c1121ba320 Initial open source commit 5 years ago
Makefile 3b48228691 chore: Finish migration to sqlc-dev/sqlc (#2548) 1 year ago
README.md 30546ea8c9 Update README.md 1 year ago
buf.gen.yaml 5096a9fb39 Update bufbuild plugin references (#2253) 1 year ago
buf.lock da6fe0a21f protos: Add missing field name (#2354) 1 year ago
buf.work.yaml 6eb27c005c setup bufbuild to generate proto (#1974) 1 year ago
buf.yaml e2051225bc python: Use latest version of sqlc-gen-python (#2355) 1 year ago
cliff.toml 3b48228691 chore: Finish migration to sqlc-dev/sqlc (#2548) 1 year ago
devenv.lock 07933428eb build(devenv): bump go from 1.20.7 to 1.21.0 (#2702) 1 year ago
devenv.nix 07933428eb build(devenv): bump go from 1.20.7 to 1.21.0 (#2702) 1 year ago
devenv.yaml b09ddb7d14 build: Configure dependencies via devenv.sh (#2319) 1 year ago
docker-compose.yml a5f57a972c test: Add profiles to docker compose (#2503) 1 year ago
equinox.pub 91d9f0a99b Automatically deploy master to Equinox (#46) 5 years ago
go.mod 0cfaf70531 build(deps): bump github.com/google/cel-go from 0.18.0 to 0.18.1 (#2778) 1 year ago
go.sum 0cfaf70531 build(deps): bump github.com/google/cel-go from 0.18.0 to 0.18.1 (#2778) 1 year ago
placeholder.go 3b48228691 chore: Finish migration to sqlc-dev/sqlc (#2548) 1 year ago

README.md

sqlc: A SQL Compiler

Run a test

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, and the introductory blog post for the motivation behind sqlc.

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.