Versions in this module Expand all Collapse all v0 v0.0.4 Feb 3, 2020 v0.0.3 Feb 3, 2020 Changes in this version + type Author struct + AuthorID int32 + Name string + type Book struct + AuthorID int32 + Available time.Time + BookID int32 + Booktype BookType + Isbn string + Tags []string + Title string + Year int32 + type BookType string + const BookTypeFICTION + const BookTypeNONFICTION + func (e *BookType) Scan(src interface{}) error + type BooksByTagsRow struct + BookID int32 + Isbn string + Name string + Tags []string + Title string + type BooksByTitleYearParams struct + Title string + Year int32 + type CreateBookParams struct + AuthorID int32 + Available time.Time + Booktype BookType + Isbn string + Tags []string + Title string + Year int32 + type DBTX interface + ExecContext func(context.Context, string, ...interface{}) (sql.Result, error) + PrepareContext func(context.Context, string) (*sql.Stmt, error) + QueryContext func(context.Context, string, ...interface{}) (*sql.Rows, error) + QueryRowContext func(context.Context, string, ...interface{}) *sql.Row + type Queries struct + func New(db DBTX) *Queries + func (q *Queries) BooksByTags(ctx context.Context, dollar_1 []string) ([]BooksByTagsRow, error) + func (q *Queries) BooksByTitleYear(ctx context.Context, arg BooksByTitleYearParams) ([]Book, error) + func (q *Queries) CreateAuthor(ctx context.Context, name string) (Author, error) + func (q *Queries) CreateBook(ctx context.Context, arg CreateBookParams) (Book, error) + func (q *Queries) DeleteBook(ctx context.Context, bookID int32) error + func (q *Queries) GetAuthor(ctx context.Context, authorID int32) (Author, error) + func (q *Queries) GetBook(ctx context.Context, bookID int32) (Book, error) + func (q *Queries) UpdateBook(ctx context.Context, arg UpdateBookParams) error + func (q *Queries) UpdateBookISBN(ctx context.Context, arg UpdateBookISBNParams) error + func (q *Queries) WithTx(tx *sql.Tx) *Queries + type UpdateBookISBNParams struct + BookID int32 + Isbn string + Tags []string + Title string + type UpdateBookParams struct + BookID int32 + Tags []string + Title string