# Functions
AuthorBookResultsByTag runs a custom query, returning results as AuthorBookResult.
AuthorByAuthorID retrieves a row from 'authors' as a Author.
AuthorsByName retrieves a row from 'authors' as a Author.
BookByBookID retrieves a row from 'books' as a Book.
BookByIsbn retrieves a row from 'books' as a Book.
BooksByTitleYear retrieves a row from 'books' as a Book.
# Variables
XOLog provides the log func used by generated queries.
# Structs
Author represents a row from 'authors'.
AuthorBookResult is the result of a search.
Book represents a row from 'books'.
# Interfaces
ScannerValuer is the common interface for types that implement both the database/sql.Scanner and sql/driver.Valuer interfaces.
XODB is the common interface for database operations that can be used with types from schema ''.