Versions in this module Expand all Collapse all v2 v2.6.7 Mar 3, 2023 Changes in this version + type Batch interface + Abort func() error + Append func(v ...interface{}) error + AppendStruct func(v interface{}) error + Column func(int) BatchColumn + Flush func() error + IsSent func() bool + Send func() error + type BatchColumn interface + Append func(interface{}) error + type ColumnType interface + DatabaseTypeName func() string + Name func() string + Nullable func() bool + ScanType func() reflect.Type + type Conn interface + AsyncInsert func(ctx context.Context, query string, wait bool) error + Close func() error + Contributors func() []string + Exec func(ctx context.Context, query string, args ...interface{}) error + Ping func(context.Context) error + PrepareBatch func(ctx context.Context, query string) (Batch, error) + Query func(ctx context.Context, query string, args ...interface{}) (Rows, error) + QueryRow func(ctx context.Context, query string, args ...interface{}) Row + Select func(ctx context.Context, dest interface{}, query string, args ...interface{}) error + ServerVersion func() (*ServerVersion, error) + Stats func() Stats + type NamedDateValue struct + Name string + Scale uint8 + Value time.Time + type NamedValue struct + Name string + Value interface{} + type Row interface + Err func() error + Scan func(dest ...interface{}) error + ScanStruct func(dest interface{}) error + type Rows interface + Close func() error + ColumnTypes func() []ColumnType + Columns func() []string + Err func() error + Next func() bool + Scan func(dest ...interface{}) error + ScanStruct func(dest interface{}) error + Totals func(dest ...interface{}) error + type ServerVersion = proto.ServerHandshake + type Stats struct + Idle int + MaxIdleConns int + MaxOpenConns int + Open int