# Functions

FetchRow receives a *sql.Rows value and tries to map all the rows into a single struct given by the pointer `dst`.
FetchRows receives a *sql.Rows value and tries to map all the rows into a slice of structs given by the pointer `dst`.

# Structs

Debug is used for printing SQL queries and arguments.
T type is commonly used by adapters to map database/sql values to Go values using FieldValues().