package
0.5.1
Repository: https://github.com/nofeaturesonlybugs/sqlh.git
Documentation: pkg.go.dev

# Packages

Package examples provides types and functions to facilitate the examples and test code in the model package.
Package statements builds uses a grammar to build SQL statements scoped to entities within the database.

# Constants

Models with zero key fields can only be inserted.
Models with only key,auto fields use insert or update depending on the current values of the key fields.
Models with at least one key field that is not auto must use upsert.

# Variables

No description provided by the author

# Structs

Model relates a Go type to its Table.
Models is a registry of Models and methods to manipulate them.
QueryBinding binds a model together with a specific query.

# Type aliases

SaveMode describes how a model should be saved when passed to Models.Save method.
TableName represents a database table name.