# Functions
Begin begins a transaction and returns an *sqlx.Tx instead of an *sql.Tx.
Exec executes a query without returning any rows.
Get using this db.
MustBegin starts a transaction, and panics on error.
Prepare returns an sqlx.Stmt instead of a sql.Stmt.
PrepareNamed returns an sqlx.NamedStmt.
RNamedQuery using this db.
RQuery queries the database and returns an *sqlx.Row.
RQueryRow queries the database and returns an *sqlx.Row.
Select using this db.
WNamedExec using this db.
WNamedQuery using this db.
WQuery queries the database and returns an *sqlx.Row.
WQueryRow queries the database and returns an *sqlx.Row.