Documentation ¶
Index ¶
- Variables
- func JoinedGuildExists(ctx context.Context, exec boil.ContextExecutor, iD int64) (bool, error)
- func JoinedGuildExistsG(ctx context.Context, iD int64) (bool, error)
- func JoinedGuilds(mods ...qm.QueryMod) joinedGuildQuery
- func NewQuery(mods ...qm.QueryMod) *queries.Query
- type JoinedGuild
- func (o *JoinedGuild) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error)
- func (o *JoinedGuild) DeleteG(ctx context.Context) (int64, error)
- func (o *JoinedGuild) Exists(ctx context.Context, exec boil.ContextExecutor) (bool, error)
- func (o *JoinedGuild) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error
- func (o *JoinedGuild) InsertG(ctx context.Context, columns boil.Columns) error
- func (o *JoinedGuild) Reload(ctx context.Context, exec boil.ContextExecutor) error
- func (o *JoinedGuild) ReloadG(ctx context.Context) error
- func (o *JoinedGuild) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error)
- func (o *JoinedGuild) UpdateG(ctx context.Context, columns boil.Columns) (int64, error)
- func (o *JoinedGuild) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, ...) error
- func (o *JoinedGuild) UpsertG(ctx context.Context, updateOnConflict bool, conflictColumns []string, ...) error
- type JoinedGuildSlice
- func (o JoinedGuildSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error)
- func (o JoinedGuildSlice) DeleteAllG(ctx context.Context) (int64, error)
- func (o *JoinedGuildSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error
- func (o *JoinedGuildSlice) ReloadAllG(ctx context.Context) error
- func (o JoinedGuildSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)
- func (o JoinedGuildSlice) UpdateAllG(ctx context.Context, cols M) (int64, error)
- type M
- type UpsertOptionFunc
- type UpsertOptions
Constants ¶
This section is empty.
Variables ¶
var ErrSyncFail = errors.New("models: failed to synchronize data after insert")
ErrSyncFail occurs during insert when the record could not be retrieved in order to populate default value information. This usually happens when LastInsertId fails or there was a primary key configuration that was not resolvable.
var JoinedGuildColumns = struct { ID string JoinedAt string LeftAt string MemberCount string Name string OwnerID string Avatar string }{ ID: "id", JoinedAt: "joined_at", LeftAt: "left_at", MemberCount: "member_count", Name: "name", OwnerID: "owner_id", Avatar: "avatar", }
var JoinedGuildRels = struct {
}{}
JoinedGuildRels is where relationship names are stored.
var JoinedGuildTableColumns = struct { ID string JoinedAt string LeftAt string MemberCount string Name string OwnerID string Avatar string }{ ID: "joined_guilds.id", JoinedAt: "joined_guilds.joined_at", LeftAt: "joined_guilds.left_at", MemberCount: "joined_guilds.member_count", Name: "joined_guilds.name", OwnerID: "joined_guilds.owner_id", Avatar: "joined_guilds.avatar", }
var JoinedGuildWhere = struct { ID whereHelperint64 JoinedAt whereHelpertime_Time LeftAt whereHelpernull_Time MemberCount whereHelperint64 Name whereHelperstring OwnerID whereHelperint64 Avatar whereHelperstring }{ ID: whereHelperint64{/* contains filtered or unexported fields */}, JoinedAt: whereHelpertime_Time{/* contains filtered or unexported fields */}, LeftAt: whereHelpernull_Time{/* contains filtered or unexported fields */}, MemberCount: whereHelperint64{/* contains filtered or unexported fields */}, Name: whereHelperstring{/* contains filtered or unexported fields */}, OwnerID: whereHelperint64{/* contains filtered or unexported fields */}, Avatar: whereHelperstring{/* contains filtered or unexported fields */}, }
var TableNames = struct { JoinedGuilds string }{ JoinedGuilds: "joined_guilds", }
Functions ¶
func JoinedGuildExists ¶
JoinedGuildExists checks if the JoinedGuild row exists.
func JoinedGuildExistsG ¶
JoinedGuildExistsG checks if the JoinedGuild row exists.
func JoinedGuilds ¶
JoinedGuilds retrieves all the records using an executor.
Types ¶
type JoinedGuild ¶
type JoinedGuild struct { ID int64 `boil:"id" json:"id" toml:"id" yaml:"id"` JoinedAt time.Time `boil:"joined_at" json:"joined_at" toml:"joined_at" yaml:"joined_at"` LeftAt null.Time `boil:"left_at" json:"left_at,omitempty" toml:"left_at" yaml:"left_at,omitempty"` MemberCount int64 `boil:"member_count" json:"member_count" toml:"member_count" yaml:"member_count"` Name string `boil:"name" json:"name" toml:"name" yaml:"name"` OwnerID int64 `boil:"owner_id" json:"owner_id" toml:"owner_id" yaml:"owner_id"` Avatar string `boil:"avatar" json:"avatar" toml:"avatar" yaml:"avatar"` R *joinedGuildR `boil:"-" json:"-" toml:"-" yaml:"-"` L joinedGuildL `boil:"-" json:"-" toml:"-" yaml:"-"` }
JoinedGuild is an object representing the database table.
func FindJoinedGuild ¶
func FindJoinedGuild(ctx context.Context, exec boil.ContextExecutor, iD int64, selectCols ...string) (*JoinedGuild, error)
FindJoinedGuild retrieves a single record by ID with an executor. If selectCols is empty Find will return all columns.
func FindJoinedGuildG ¶
FindJoinedGuildG retrieves a single record by ID.
func (*JoinedGuild) Delete ¶
func (o *JoinedGuild) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error)
Delete deletes a single JoinedGuild record with an executor. Delete will match against the primary key column to find the record to delete.
func (*JoinedGuild) DeleteG ¶
func (o *JoinedGuild) DeleteG(ctx context.Context) (int64, error)
DeleteG deletes a single JoinedGuild record. DeleteG will match against the primary key column to find the record to delete.
func (*JoinedGuild) Exists ¶ added in v2.36.0
func (o *JoinedGuild) Exists(ctx context.Context, exec boil.ContextExecutor) (bool, error)
Exists checks if the JoinedGuild row exists.
func (*JoinedGuild) Insert ¶
func (o *JoinedGuild) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error
Insert a single record using an executor. See boil.Columns.InsertColumnSet documentation to understand column list inference for inserts.
func (*JoinedGuild) InsertG ¶
InsertG a single record. See Insert for whitelist behavior description.
func (*JoinedGuild) Reload ¶
func (o *JoinedGuild) Reload(ctx context.Context, exec boil.ContextExecutor) error
Reload refetches the object from the database using the primary keys with an executor.
func (*JoinedGuild) ReloadG ¶
func (o *JoinedGuild) ReloadG(ctx context.Context) error
ReloadG refetches the object from the database using the primary keys.
func (*JoinedGuild) Update ¶
func (o *JoinedGuild) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error)
Update uses an executor to update the JoinedGuild. See boil.Columns.UpdateColumnSet documentation to understand column list inference for updates. Update does not automatically update the record in case of default values. Use .Reload() to refresh the records.
func (*JoinedGuild) UpdateG ¶
UpdateG a single JoinedGuild record using the global executor. See Update for more documentation.
func (*JoinedGuild) Upsert ¶
func (o *JoinedGuild) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, conflictColumns []string, updateColumns, insertColumns boil.Columns, opts ...UpsertOptionFunc) error
Upsert attempts an insert using an executor, and does an update or ignore on conflict. See boil.Columns documentation for how to properly use updateColumns and insertColumns.
type JoinedGuildSlice ¶
type JoinedGuildSlice []*JoinedGuild
JoinedGuildSlice is an alias for a slice of pointers to JoinedGuild. This should almost always be used instead of []JoinedGuild.
func (JoinedGuildSlice) DeleteAll ¶
func (o JoinedGuildSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error)
DeleteAll deletes all rows in the slice, using an executor.
func (JoinedGuildSlice) DeleteAllG ¶
func (o JoinedGuildSlice) DeleteAllG(ctx context.Context) (int64, error)
DeleteAllG deletes all rows in the slice.
func (*JoinedGuildSlice) ReloadAll ¶
func (o *JoinedGuildSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error
ReloadAll refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.
func (*JoinedGuildSlice) ReloadAllG ¶
func (o *JoinedGuildSlice) ReloadAllG(ctx context.Context) error
ReloadAllG refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.
func (JoinedGuildSlice) UpdateAll ¶
func (o JoinedGuildSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)
UpdateAll updates all rows with the specified column values, using an executor.
func (JoinedGuildSlice) UpdateAllG ¶
UpdateAllG updates all rows with the specified column values.
type M ¶
type M map[string]interface{}
M type is for providing columns and column values to UpdateAll.
type UpsertOptionFunc ¶ added in v2.36.0
type UpsertOptionFunc func(o *UpsertOptions)
func UpsertConflictTarget ¶ added in v2.36.0
func UpsertConflictTarget(conflictTarget string) UpsertOptionFunc
func UpsertUpdateSet ¶ added in v2.36.0
func UpsertUpdateSet(updateSet string) UpsertOptionFunc
type UpsertOptions ¶ added in v2.36.0
type UpsertOptions struct {
// contains filtered or unexported fields
}