SQLBoiler is a tool to generate a Go ORM tailored to your database schema.
Go to file
2016-08-13 17:49:39 +10:00
bdb Modify postgres query to get is_unique for indexes 2016-08-13 17:30:55 +10:00
boil Fix ? conversion to $x for having and join args 2016-08-13 03:59:50 +10:00
strmangle Add byte buffer pool 2016-08-13 17:49:39 +10:00
templates Modify postgres query to get is_unique for indexes 2016-08-13 17:30:55 +10:00
templates_test Remove unecessary print 2016-08-11 22:38:55 +10:00
testdata Add circle file and test schema 2016-08-05 15:20:31 +10:00
.gitignore Got insert testing in a better state 2016-07-14 02:51:40 +10:00
circle.yml Remove coveralls support because it sucks 2016-08-08 18:55:03 +10:00
config.go Add postgres sslmode to configuration. 2016-07-11 15:17:49 -07:00
imports.go Add FilterColumnsByUnique, finish UpdateAll slice 2016-08-11 22:26:49 +10:00
imports_test.go Update repo to add vattle org paths 2016-08-09 17:59:30 +10:00
LICENSE.md Add badges, fix license 2016-08-08 17:49:52 +10:00
main.go Update repo to add vattle org paths 2016-08-09 17:59:30 +10:00
output.go Stop dividing templates up, and execute by name 2016-07-16 23:55:15 -07:00
output_test.go Move main back to root folder. 2016-06-12 11:19:23 -07:00
README.md Update repo to add vattle org paths 2016-08-09 17:59:30 +10:00
sqlboiler.go Update repo to add vattle org paths 2016-08-09 17:59:30 +10:00
sqlboiler_test.go Update repo to add vattle org paths 2016-08-09 17:59:30 +10:00
templates.go Modify postgres query to get is_unique for indexes 2016-08-13 17:30:55 +10:00
templates_test.go Stop dividing templates up, and execute by name 2016-07-16 23:55:15 -07:00
text_helpers.go Update repo to add vattle org paths 2016-08-09 17:59:30 +10:00
text_helpers_test.go Update repo to add vattle org paths 2016-08-09 17:59:30 +10:00

SQLBoiler

License GoDoc CircleCI Go Report Card

SQLBoiler is a tool to generate a Go ORM tailored to your database schema.

Config

config.toml

[postgres]
  host="localhost"
  port=5432
  user="dbusername"
  pass="dbpassword"
  dbname="dbname"

How

SQLBoiler connects to your database (defined in your config.toml file) to ascertain the structure of your tables, and builds your Go ORM code using the templates defined in the /templates folder.

Running SQLBoiler without the --table flag will result in SQLBoiler building boilerplate code for every table in your database marked as public.

Before you use SQLBoiler make sure you create a config.toml configuration file with your database details, and specify your database by using the --driver flag.

Usage:
  sqlboiler [flags]

Flags:
  -d, --driver string    The name of the driver in your config.toml (mandatory)
  -f, --folder string    The name of the output folder (default "output")
  -p, --pkgname string   The name you wish to assign to your generated package (default "model")
  -t, --table string     A comma seperated list of table names (generates all tables if not provided)