Versions in this module Expand all Collapse all v1 v1.20.2 Sep 5, 2023 v1.20.1 Sep 5, 2023 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 sql.NullString + 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 NullBookType struct + BookType BookType + Valid bool + func (ns *NullBookType) Scan(value interface{}) error + func (ns NullBookType) Value() (driver.Value, error) + 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