postgres

package
v0.3.9 Latest Latest
Warning

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

Go to latest
Published: Mar 27, 2024 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type DBConn

type DBConn interface {
	Exec(ctx context.Context, sql string, arguments ...interface{}) (pgconn.CommandTag, error)
	Query(ctx context.Context, sql string, optionsAndArgs ...interface{}) (pgx.Rows, error)
	QueryRow(ctx context.Context, sql string, optionsAndArgs ...interface{}) pgx.Row
}

DBConn Implemented by pgx.Conn and pgx.Tx.

type DBConnection

type DBConnection struct {
	Conn DBConn
	// contains filtered or unexported fields
}

func Connect

func Connect(ctx context.Context, config config.Database) (*DBConnection, error)

func (*DBConnection) Cleanup

func (d *DBConnection) Cleanup() error

func (*DBConnection) Close

func (d *DBConnection) Close() error

func (*DBConnection) WithTransaction

func (d *DBConnection) WithTransaction(f func(conn *DBConnection) error) error

type DatabaseRunner added in v0.3.0

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

func NewRunner added in v0.3.0

func NewRunner() *DatabaseRunner

func (*DatabaseRunner) Cleanup added in v0.3.0

func (r *DatabaseRunner) Cleanup(t *testing.T) func()

func (*DatabaseRunner) Connection added in v0.3.0

func (r *DatabaseRunner) Connection() *DBConnection

func (*DatabaseRunner) Run added in v0.3.0

func (r *DatabaseRunner) Run(t *testing.T, runTests func(t *testing.T))

Jump to

Keyboard shortcuts

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