# Functions
Beginx 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.
MustExec (panic) runs MustExec using this database.
NamedExec using this db.
NamedQuery using this db.
PrepareNamed returns an sqlx.NamedStmt.
Preparex returns an sqlx.Stmt instead of a sql.Stmt.
QueryRowx queries the database and returns an *sqlx.Row.
Queryx queries the database and returns an *sqlx.Row.
Select using this db.