joins

package
v0.0.0-...-06e4aab Latest Latest
Warning

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

Go to latest
Published: Oct 18, 2024 License: Apache-2.0 Imports: 20 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	WrapErr     = func(err *Error) error { return err }
	Logger      func(format string, args ...any)
	ShouldRetry func(driver string, err error) bool
)
View Source
var SQLite3JournalMode = "WAL"

SQLite3JournalMode controls the journal_mode pragma for all new connections. Since it is read without a mutex, it must be changed to the value you want before any Open calls.

Functions

func DeleteAll

func DeleteAll(ctx context.Context, db *DB) (int64, error)

Types

type AssociatedAccount

type AssociatedAccount struct {
	Pk     int64
	UserPk int64
}

type AssociatedAccount_Pk_Field

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

func AssociatedAccount_Pk

func AssociatedAccount_Pk(v int64) AssociatedAccount_Pk_Field

type AssociatedAccount_Update_Fields

type AssociatedAccount_Update_Fields struct {
}

type AssociatedAccount_UserPk_Field

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

func AssociatedAccount_UserPk

func AssociatedAccount_UserPk(v int64) AssociatedAccount_UserPk_Field

type DB

type DB struct {
	*sql.DB

	Hooks struct {
		Now func() time.Time
	}
	// contains filtered or unexported fields
}

func Open

func Open(driver, source string) (db *DB, err error)

func (*DB) Close

func (obj *DB) Close() (err error)

func (*DB) Open

func (obj *DB) Open(ctx context.Context) (*Tx, error)

type DBMethods

type DBMethods interface {
	Methods

	Schema() []string
	DropSchema() []string

	Rebind(sql string) string
}

type Error

type Error struct {
	Err         error
	Code        ErrorCode
	Driver      string
	Constraint  string
	QuerySuffix string
}

func (*Error) Error

func (e *Error) Error() string

func (*Error) Unwrap

func (e *Error) Unwrap() error

type ErrorCode

type ErrorCode int
const (
	ErrorCode_Unknown ErrorCode = iota
	ErrorCode_UnsupportedDriver
	ErrorCode_NoRows
	ErrorCode_TxDone
	ErrorCode_TooManyRows
	ErrorCode_ConstraintViolation
	ErrorCode_EmptyUpdate
)

type Id_Row

type Id_Row struct {
	Id int64
}

type Methods

type Methods interface {
	All_Session_Id_By_AssociatedAccount_Pk(ctx context.Context,
		associated_account_pk AssociatedAccount_Pk_Field) (
		rows []*Id_Row, err error)

	Create_AssociatedAccount(ctx context.Context,
		associated_account_user_pk AssociatedAccount_UserPk_Field) (
		associated_account *AssociatedAccount, err error)

	Create_Session(ctx context.Context,
		session_user_pk Session_UserPk_Field) (
		session *Session, err error)

	Create_User(ctx context.Context) (
		user *User, err error)
}

type Session

type Session struct {
	Id     int64
	UserPk int64
}

type Session_Id_Field

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

func Session_Id

func Session_Id(v int64) Session_Id_Field

type Session_Update_Fields

type Session_Update_Fields struct {
}

type Session_UserPk_Field

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

func Session_UserPk

func Session_UserPk(v int64) Session_UserPk_Field

type Tx

type Tx struct {
	Tx *sql.Tx
	// contains filtered or unexported fields
}

func (*Tx) ExecContext

func (tx *Tx) ExecContext(ctx context.Context, query string, args ...any) (sql.Result, error)

func (*Tx) QueryContext

func (tx *Tx) QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error)

func (*Tx) QueryRowContext

func (tx *Tx) QueryRowContext(ctx context.Context, query string, args ...any) *sql.Row

type TxMethods

type TxMethods interface {
	Methods

	Rebind(s string) string
	Commit() error
	Rollback() error
}

type User

type User struct {
	Pk int64
}

type User_Pk_Field

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

func User_Pk

func User_Pk(v int64) User_Pk_Field

type User_Update_Fields

type User_Update_Fields struct {
}

Jump to

Keyboard shortcuts

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