piotrkowalczuk / pqt

Postgres schema definition, sql/go, code generation package.

Home Page:https://godoc.org/github.com/piotrkowalczuk/pqt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pqt GoDoc go workflow

This package is a toolbox for Postgres driven applications. It provides multiple tools to help to work with Postgres efficiently. In comparison to other currently available libraries instead of pushing struct tags into anti-pattern or parsing SQL, it allows defining schema programmatically.

From a developer perspective, pqt is primarily a toolkit generator, not an ORM. It means it is focusing on bringing low-level building blocks. Generated DAL (Data Access Layer) is only a (desired) side effect, a proof that those components fit together well.

A developer gets full access to the internals. Building your own, type-safe logic takes minutes. As a result, transition in and out is easy. No fear that you will be stuck with an ORM that doesn't meet your requirements anymore.

Documentation

Example

The package itself does not provide any command line application that would generate output out of given input. Instead, it encourages to write local generation application next to the proper package. A good example of how such an application could be structured can be found in examples.

By default, the example is trying to connect to local test database on the default port. To run it simply call:

$ make gen // not necessary, since generated code is already part of the repo
$ make run

Plugins

pqtgo supports plugins over the interface.

Contribution

TODO

About

Postgres schema definition, sql/go, code generation package.

https://godoc.org/github.com/piotrkowalczuk/pqt

License:MIT License


Languages

Language:Go 99.9%Language:Makefile 0.1%