Versions in this module Expand all Collapse all v0 v0.1.0 Jun 29, 2016 Changes in this version + type Executor interface + Exec func(query string, args ...interface{}) (Result, error) + Query func(query string, args ...interface{}) (Rows, error) + type ParamAdapter func(pos int) string + type Result interface + LastInsertId func() (int64, error) + RowsAffected func() (int64, error) + type Rows interface + Close func() error + Columns func() ([]string, error) + Err func() error + Next func() bool + Scan func(dest ...interface{}) error