sqlitecachec

package
v0.0.0-...-26b89f5 Latest Latest
Warning

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

Go to latest
Published: Sep 2, 2024 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type DBTX

type DBTX interface {
	ExecContext(context.Context, string, ...interface{}) (sql.Result, error)
	PrepareContext(context.Context, string) (*sql.Stmt, error)
	QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)
	QueryRowContext(context.Context, string, ...interface{}) *sql.Row
}

type Item

type Item struct {
	ItemID     int64
	Gob        string
	Expiration int64
}

type ItemByItemIDParams

type ItemByItemIDParams struct {
	ItemID     int64
	Expiration int64
}

type ItemRecipe

type ItemRecipe struct {
	ItemID     int64
	Gob        string
	Expiration int64
}

type ItemRecipeByItemIDParams

type ItemRecipeByItemIDParams struct {
	ItemID     int64
	Expiration int64
}

type ItemRecipeReplaceParams

type ItemRecipeReplaceParams struct {
	ItemID     int64
	Gob        string
	Expiration int64
}

type ItemReplaceParams

type ItemReplaceParams struct {
	ItemID     int64
	Gob        string
	Expiration int64
}

type Npc

type Npc struct {
	NpcID      int64
	Gob        string
	Expiration int64
}

type NpcByNpcIDParams

type NpcByNpcIDParams struct {
	NpcID      int64
	Expiration int64
}

type NpcFaction

type NpcFaction struct {
	FactionID  int64
	Gob        string
	Expiration int64
}

type NpcFactionByFactionIDParams

type NpcFactionByFactionIDParams struct {
	FactionID  int64
	Expiration int64
}

type NpcFactionReplaceParams

type NpcFactionReplaceParams struct {
	FactionID  int64
	Gob        string
	Expiration int64
}

type NpcLoot

type NpcLoot struct {
	LootTableID int64
	Gob         string
	Expiration  int64
}

type NpcLootByLootTableIDParams

type NpcLootByLootTableIDParams struct {
	LootTableID int64
	Expiration  int64
}

type NpcLootReplaceParams

type NpcLootReplaceParams struct {
	LootTableID int64
	Gob         string
	Expiration  int64
}

type NpcMerchant

type NpcMerchant struct {
	NpcID      int64
	Gob        string
	Expiration int64
}

type NpcMerchantByNpcIDParams

type NpcMerchantByNpcIDParams struct {
	NpcID      int64
	Expiration int64
}

type NpcMerchantReplaceParams

type NpcMerchantReplaceParams struct {
	NpcID      int64
	Gob        string
	Expiration int64
}

type NpcQuest

type NpcQuest struct {
	NpcID      int64
	Gob        string
	Expiration int64
}

type NpcQuestByNpcIDParams

type NpcQuestByNpcIDParams struct {
	NpcID      int64
	Expiration int64
}

type NpcQuestReplaceParams

type NpcQuestReplaceParams struct {
	NpcID      int64
	Gob        string
	Expiration int64
}

type NpcReplaceParams

type NpcReplaceParams struct {
	NpcID      int64
	Gob        string
	Expiration int64
}

type NpcSpawn

type NpcSpawn struct {
	NpcID      int64
	Gob        string
	Expiration int64
}

type NpcSpawnByNpcIDParams

type NpcSpawnByNpcIDParams struct {
	NpcID      int64
	Expiration int64
}

type NpcSpell

type NpcSpell struct {
	NpcSpellsID int64
	Gob         string
	Expiration  int64
}

type NpcSpellByNpcSpellsIDParams

type NpcSpellByNpcSpellsIDParams struct {
	NpcSpellsID int64
	Expiration  int64
}

type Player

type Player struct {
	CharacterID int64
	Gob         string
	Expiration  int64
}

type PlayerByCharacterIDParams

type PlayerByCharacterIDParams struct {
	CharacterID int64
	Expiration  int64
}

type PlayerReplaceParams

type PlayerReplaceParams struct {
	CharacterID int64
	Gob         string
	Expiration  int64
}

type Queries

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

func New

func New(db DBTX) *Queries

func (*Queries) ItemByItemID

func (q *Queries) ItemByItemID(ctx context.Context, arg ItemByItemIDParams) (string, error)

func (*Queries) ItemCreate

func (q *Queries) ItemCreate(ctx context.Context) error

func (*Queries) ItemRecipeByItemID

func (q *Queries) ItemRecipeByItemID(ctx context.Context, arg ItemRecipeByItemIDParams) (string, error)

func (*Queries) ItemRecipeCreate

func (q *Queries) ItemRecipeCreate(ctx context.Context) error

func (*Queries) ItemRecipeReplace

func (q *Queries) ItemRecipeReplace(ctx context.Context, arg ItemRecipeReplaceParams) error

func (*Queries) ItemRecipeTruncate

func (q *Queries) ItemRecipeTruncate(ctx context.Context, expiration int64) error

func (*Queries) ItemReplace

func (q *Queries) ItemReplace(ctx context.Context, arg ItemReplaceParams) error

func (*Queries) ItemTruncate

func (q *Queries) ItemTruncate(ctx context.Context, expiration int64) error

func (*Queries) NpcByNpcID

func (q *Queries) NpcByNpcID(ctx context.Context, arg NpcByNpcIDParams) (string, error)

func (*Queries) NpcCreate

func (q *Queries) NpcCreate(ctx context.Context) error

func (*Queries) NpcFactionByFactionID

func (q *Queries) NpcFactionByFactionID(ctx context.Context, arg NpcFactionByFactionIDParams) (string, error)

func (*Queries) NpcFactionCreate

func (q *Queries) NpcFactionCreate(ctx context.Context) error

func (*Queries) NpcFactionReplace

func (q *Queries) NpcFactionReplace(ctx context.Context, arg NpcFactionReplaceParams) error

func (*Queries) NpcFactionTruncate

func (q *Queries) NpcFactionTruncate(ctx context.Context, expiration int64) error

func (*Queries) NpcLootByLootTableID

func (q *Queries) NpcLootByLootTableID(ctx context.Context, arg NpcLootByLootTableIDParams) (string, error)

func (*Queries) NpcLootCreate

func (q *Queries) NpcLootCreate(ctx context.Context) error

func (*Queries) NpcLootReplace

func (q *Queries) NpcLootReplace(ctx context.Context, arg NpcLootReplaceParams) error

func (*Queries) NpcLootTruncate

func (q *Queries) NpcLootTruncate(ctx context.Context, expiration int64) error

func (*Queries) NpcMerchantByNpcID

func (q *Queries) NpcMerchantByNpcID(ctx context.Context, arg NpcMerchantByNpcIDParams) (string, error)

func (*Queries) NpcMerchantCreate

func (q *Queries) NpcMerchantCreate(ctx context.Context) error

func (*Queries) NpcMerchantReplace

func (q *Queries) NpcMerchantReplace(ctx context.Context, arg NpcMerchantReplaceParams) error

func (*Queries) NpcMerchantTruncate

func (q *Queries) NpcMerchantTruncate(ctx context.Context, expiration int64) error

func (*Queries) NpcQuestByNpcID

func (q *Queries) NpcQuestByNpcID(ctx context.Context, arg NpcQuestByNpcIDParams) (string, error)

func (*Queries) NpcQuestCreate

func (q *Queries) NpcQuestCreate(ctx context.Context) error

func (*Queries) NpcQuestReplace

func (q *Queries) NpcQuestReplace(ctx context.Context, arg NpcQuestReplaceParams) error

func (*Queries) NpcQuestTruncate

func (q *Queries) NpcQuestTruncate(ctx context.Context, expiration int64) error

func (*Queries) NpcReplace

func (q *Queries) NpcReplace(ctx context.Context, arg NpcReplaceParams) error

func (*Queries) NpcSpawnByNpcID

func (q *Queries) NpcSpawnByNpcID(ctx context.Context, arg NpcSpawnByNpcIDParams) (string, error)

func (*Queries) NpcSpawnCreate

func (q *Queries) NpcSpawnCreate(ctx context.Context) error

func (*Queries) NpcSpawnTruncate

func (q *Queries) NpcSpawnTruncate(ctx context.Context, expiration int64) error

func (*Queries) NpcSpellByNpcSpellsID

func (q *Queries) NpcSpellByNpcSpellsID(ctx context.Context, arg NpcSpellByNpcSpellsIDParams) (string, error)

func (*Queries) NpcSpellCreate

func (q *Queries) NpcSpellCreate(ctx context.Context) error

func (*Queries) NpcSpellTruncate

func (q *Queries) NpcSpellTruncate(ctx context.Context, expiration int64) error

func (*Queries) NpcTruncate

func (q *Queries) NpcTruncate(ctx context.Context, expiration int64) error

func (*Queries) PlayerByCharacterID

func (q *Queries) PlayerByCharacterID(ctx context.Context, arg PlayerByCharacterIDParams) (string, error)

func (*Queries) PlayerCreate

func (q *Queries) PlayerCreate(ctx context.Context) error

func (*Queries) PlayerReplace

func (q *Queries) PlayerReplace(ctx context.Context, arg PlayerReplaceParams) error

func (*Queries) PlayerTruncate

func (q *Queries) PlayerTruncate(ctx context.Context, expiration int64) error

func (*Queries) QuestByID

func (q *Queries) QuestByID(ctx context.Context, arg QuestByIDParams) (string, error)

func (*Queries) QuestCreate

func (q *Queries) QuestCreate(ctx context.Context) error

func (*Queries) QuestTruncate

func (q *Queries) QuestTruncate(ctx context.Context, expiration int64) error

func (*Queries) WithTx

func (q *Queries) WithTx(tx *sql.Tx) *Queries

type Quest

type Quest struct {
	QuestID    int64
	Gob        string
	Expiration int64
}

type QuestByIDParams

type QuestByIDParams struct {
	QuestID    int64
	Expiration int64
}

Jump to

Keyboard shortcuts

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