mocksql

package
v0.0.0-...-ac5decb Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 10, 2023 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ErrNotMatchDestination defines an error for mismatching case
	ErrNotMatchDestination = errors.New("not matching destination to scan")
	// ErrNotReadableValue defines an error for the value is not addressable or interfaceable
	ErrNotReadableValue = errors.New("value not addressable or interfaceable")
	// ErrNotSettable defines an error for the variable is not settable
	ErrNotSettable = errors.New("passed in variable is not settable")
	// ErrUnsupportedValueType deinfes an error for unsupported unmarshal type
	ErrUnsupportedValueType = errors.New("unsupported unmarshal type")
)
View Source
var ErrNotFound = sql.ErrNoRows

ErrNotFound is the alias of sql.ErrNoRows

Functions

This section is empty.

Types

type MockConn

type MockConn struct {
	// contains filtered or unexported fields
}

MockConn defines a mock connection instance for mysql

func NewMockConn

func NewMockConn(db *sql.DB) *MockConn

NewMockConn creates an instance for MockConn

func (*MockConn) Exec

func (conn *MockConn) Exec(query string, args ...any) (sql.Result, error)

Exec executes sql and returns the result

func (*MockConn) ExecCtx

func (conn *MockConn) ExecCtx(_ context.Context, query string, args ...any) (sql.Result, error)

ExecCtx executes sql and returns the result

func (*MockConn) Prepare

func (conn *MockConn) Prepare(query string) (sqlx.StmtSession, error)

Prepare executes sql by sql.DB

func (*MockConn) PrepareCtx

func (conn *MockConn) PrepareCtx(_ context.Context, query string) (sqlx.StmtSession, error)

PrepareCtx executes sql by sql.DB

func (*MockConn) QueryRow

func (conn *MockConn) QueryRow(v any, q string, args ...any) error

QueryRow executes sql and returns a query row

func (*MockConn) QueryRowCtx

func (conn *MockConn) QueryRowCtx(_ context.Context, v any, query string, args ...any) error

QueryRowCtx executes sql and returns a query row

func (*MockConn) QueryRowPartial

func (conn *MockConn) QueryRowPartial(v any, q string, args ...any) error

QueryRowPartial executes sql and returns a partial query row

func (*MockConn) QueryRowPartialCtx

func (conn *MockConn) QueryRowPartialCtx(_ context.Context, v any, query string, args ...any) error

QueryRowPartialCtx executes sql and returns a partial query row

func (*MockConn) QueryRows

func (conn *MockConn) QueryRows(v any, q string, args ...any) error

QueryRows executes sql and returns query rows

func (*MockConn) QueryRowsCtx

func (conn *MockConn) QueryRowsCtx(_ context.Context, v any, query string, args ...any) error

QueryRowsCtx executes sql and returns query rows

func (*MockConn) QueryRowsPartial

func (conn *MockConn) QueryRowsPartial(v any, q string, args ...any) error

QueryRowsPartial executes sql and returns partial query rows

func (*MockConn) QueryRowsPartialCtx

func (conn *MockConn) QueryRowsPartialCtx(_ context.Context, v any, query string, args ...any) error

QueryRowsPartialCtx executes sql and returns partial query rows

func (*MockConn) RawDB

func (conn *MockConn) RawDB() (*sql.DB, error)

RawDB returns the underlying sql.DB.

func (*MockConn) Transact

func (conn *MockConn) Transact(func(session sqlx.Session) error) error

Transact is the implemention of sqlx.SqlConn, nothing to do

func (*MockConn) TransactCtx

func (conn *MockConn) TransactCtx(ctx context.Context, fn func(context.Context, sqlx.Session) error) error

TransactCtx is the implemention of sqlx.SqlConn, nothing to do

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL