Bez popisu

Kyle Conroy 30d27943d7 docs: Add changelog for v1.24.0 před 11 měsíci
.github a113b6780a feat(examples): Use hosted MySQL databases for tests (#2982) před 1 rokem
.vscode 170059f3f2 feat(devenv): add vscode settings.json with auto newline (#2834) před 1 rokem
cmd 4507ede83f feat(plugin): Use gRPC interface for codegen plugin communication (#2930) před 1 rokem
docs 30d27943d7 docs: Add changelog for v1.24.0 před 11 měsíci
examples a113b6780a feat(examples): Use hosted MySQL databases for tests (#2982) před 1 rokem
internal d5c530268f fix: Return an error instead of generating duplicate Go names (#2962) před 11 měsíci
pkg 3b48228691 chore: Finish migration to sqlc-dev/sqlc (#2548) před 1 rokem
protos 64313a6fe2 feat(verify): Add new command to verify queries and migrations (#2986) před 11 měsíci
scripts ed9264d31c feat: Add script to mirror code to sqlc-gen-go (#2952) před 1 rokem
.gitignore c269459151 chore: Ignore Vim swap files (#2616) před 1 rokem
.readthedocs.yaml 1663392017 docs: Add a ReadTheDocs config file (#2327) před 1 rokem
Dockerfile f36106c09c chore: Bump Go version from 1.21.3 to 1.21.4 in workflows and Dockerfile (#2961) před 1 rokem
LICENSE 3b528ec35d chore: Clean up a little, update LICENSE and README (#2941) před 1 rokem
Makefile eac251f258 docs: Use docker compose v2 and update MYSQL_DATABASE env var (#2870) před 1 rokem
README.md 3b528ec35d chore: Clean up a little, update LICENSE and README (#2941) před 1 rokem
buf.gen.yaml 64313a6fe2 feat(verify): Add new command to verify queries and migrations (#2986) před 11 měsíci
buf.lock da6fe0a21f protos: Add missing field name (#2354) před 1 rokem
buf.work.yaml 6eb27c005c setup bufbuild to generate proto (#1974) před 1 rokem
cliff.toml 3b48228691 chore: Finish migration to sqlc-dev/sqlc (#2548) před 1 rokem
devenv.lock 07933428eb build(devenv): bump go from 1.20.7 to 1.21.0 (#2702) před 1 rokem
devenv.nix 5ef20c6749 refactor(codegen): Remove golang and json settings from plugin proto (#2822) před 1 rokem
devenv.yaml b09ddb7d14 build: Configure dependencies via devenv.sh (#2319) před 1 rokem
docker-compose.yml eac251f258 docs: Use docker compose v2 and update MYSQL_DATABASE env var (#2870) před 1 rokem
go.mod e120ef20ec feat(ci): Rely on go.mod to determine which Go version to use (#2971) před 1 rokem
go.sum 41d71654f1 build(deps): bump github.com/google/cel-go from 0.18.1 to 0.18.2 (#2969) před 1 rokem
placeholder.go 3b48228691 chore: Finish migration to sqlc-dev/sqlc (#2548) před 1 rokem

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

Overview

Acknowledgments

sqlc was inspired by PugSQL and HugSQL.