sqlxgen

module
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 9, 2023 License: MIT

README

sqlxgen

Test Release license

sqlxgen is a tool to generate sqlx compatible code from database schema and sql queries in your project.

  1. Run postgres query or mysql query to generate model code.
  2. Run your query without selecting any rows to generate model code for the output and input structs.
  3. support for postgres and mysql databases.

Installation

homebrew
brew install aakash-rajur/tap/sqlxgen
Releases

checkout releases here

Install from source
go install -v github.com/aakash-rajur/sqlxgen/cmd/sqlxgen@latest

Usage

  1. generate sqlxgen.yml file in your project root directory with the following command.
sqlxgen init
  1. edit sqlxgen.yml file to suit your needs. example
    1. host takes precedence over url.
    2. with host other parameters can be omitted.
    3. just provide url if you want to use it as is.
    4. default connection for postgres is postgres://postgres:@localhost:5432/postgres?sslmode=disable
    5. default connection for mysql is root:@tcp(localhost:3306)/mysql?parseTime=true
# expand env vars, host takes precedence over url
# url: postgres://u:p@h:5432/db?sslmode=disable
# host: h1
# result: postgres://postgres:@h1:5432/db?sslmode=disable
  1. generate table model and query model code with the following command. Picks sqlxgen.yml from current directory.
sqlxgen generate [--config <path-to-config-file>]

Example

example can be found here

following movies table generates movies.gen.go

erDiagram
  movies {
   text title
   text original_title
   text original_language
   text overview
   integer runtime
   date release_date
   text tagline
   text status
   text homepage
   double precision popularity
   double precision vote_average
   integer vote_count
   bigint budget
   bigint revenue
   text[] keywords
   tsvector title_search
   tsvector keywords_search
   bigint id
}

following query generates get_actor.gen.go

select
a."id" as "id",
a."name" as "name",
coalesce(
  (
    select
    jsonb_agg(
      jsonb_build_object(
        'id', ma.movie_id,
        'title', m.title,
        'releaseDate', m.release_date,
        'character', ma.character
      ) order by m.release_date desc
    )
    from movies_actors ma
    inner join movies m on ma.movie_id = m.id
    where true
    and ma.actor_id = a.id
  ),
  '[]'
) as "movies"
from actors a
where a.id = :id; -- :id type: bigint

Issues

  1. :: type casting is broken in sqlx
  2. parameters are required to be annotated with typings -- :param_name type: <param type> as such,
select 
u.* 
from users u 
where true 
and id = :user_id; -- :user_id type: bigint
  1. otherwise, they'll have interface{} type and will not be type safe.
  2. json (json or jsonb) column selects required to annotated with -- column: <column_name> json_type: <array | object> as such,
select
u.id,
u.metadata -- column: metadata json_type: object
from users u
where true
and id = :user_id; -- :user_id type: bigint
  1. otherwise, they'll have json.RawMessage type.
  2. json[b]_agg, json[b]_build_object, json_arrayagg, json_objectagg, json_object and etc are taken care of ref

Motivation

  1. age-old sql generation vs sql debate, i prefer writing sql queries over sql generation. (eat your greens!)
  2. sqlx expects provides excellent support for writing named queries and mapping query results to structs. Writing struct for each one of my tables and queries is tedious and error prone.
  3. sqlc generates models for table and queries but has the following challenges:
    1. dumps all generated code in a single place, not allowing me to organize my code more contextually.
    2. does not introspect my queries through database unless I type cast my selects explicitly.
    3. introduces sqlc syntax for writing queries, which is not sql.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL