Sqlc: Compile SQL to type-safe code
1–10 of 109 posts
Re: Sqlc: Compile SQL to type-safe code
#2Re: Sqlc: Compile SQL to type-safe code
#3Re: Sqlc: Compile SQL to type-safe code
#4Re: Sqlc: Compile SQL to type-safe code
#5https://github.com/helpwave/services/tree/main/services/task...
Re: Sqlc: Compile SQL to type-safe code
#6Have been enjoying go-jet that takes a different approach: analyzes the tables in your DB and generates a set of Golang structs that lets you write 100% Golang code that looks like 99% SQL. Genius! https://github.com/go-jet/jet
Re: Sqlc: Compile SQL to type-safe code
#7Have been enjoying go-jet that takes a different approach: analyzes the tables in your DB and generates a set of Golang structs that lets you write 100% Golang code that looks like 99% SQL. Genius! https://github.com/go-jet/jet
Re: Sqlc: Compile SQL to type-safe code
#8Re: Sqlc: Compile SQL to type-safe code
#9Re: Sqlc: Compile SQL to type-safe code
#10Have been enjoying go-jet that takes a different approach: analyzes the tables in your DB and generates a set of Golang structs that lets you write 100% Golang code that looks like 99% SQL. Genius! https://github.com/go-jet/jet
Oh, so it's jOOQ but for Go. Nice. Sadly it does not support most custom Postgres things.
I added support for a bunch of postgres fancy stuff in a previous app, it wasn’t too difficult