// Code generated by SQLBoiler 3.5.0-gct (https://github.com/thrasher-corp/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package sqlite3 import ( "context" "database/sql" "fmt" "reflect" "strings" "sync" "time" "github.com/pkg/errors" "github.com/thrasher-corp/sqlboiler/boil" "github.com/thrasher-corp/sqlboiler/queries" "github.com/thrasher-corp/sqlboiler/queries/qm" "github.com/thrasher-corp/sqlboiler/queries/qmhelper" "github.com/thrasher-corp/sqlboiler/strmangle" ) // Datahistoryjob is an object representing the database table. type Datahistoryjob struct { ID string `boil:"id" json:"id" toml:"id" yaml:"id"` Nickname string `boil:"nickname" json:"nickname" toml:"nickname" yaml:"nickname"` ExchangeNameID string `boil:"exchange_name_id" json:"exchange_name_id" toml:"exchange_name_id" yaml:"exchange_name_id"` Asset string `boil:"asset" json:"asset" toml:"asset" yaml:"asset"` Base string `boil:"base" json:"base" toml:"base" yaml:"base"` Quote string `boil:"quote" json:"quote" toml:"quote" yaml:"quote"` StartTime string `boil:"start_time" json:"start_time" toml:"start_time" yaml:"start_time"` EndTime string `boil:"end_time" json:"end_time" toml:"end_time" yaml:"end_time"` Interval float64 `boil:"interval" json:"interval" toml:"interval" yaml:"interval"` DataType float64 `boil:"data_type" json:"data_type" toml:"data_type" yaml:"data_type"` RequestSize float64 `boil:"request_size" json:"request_size" toml:"request_size" yaml:"request_size"` MaxRetries float64 `boil:"max_retries" json:"max_retries" toml:"max_retries" yaml:"max_retries"` BatchCount float64 `boil:"batch_count" json:"batch_count" toml:"batch_count" yaml:"batch_count"` Status float64 `boil:"status" json:"status" toml:"status" yaml:"status"` Created string `boil:"created" json:"created" toml:"created" yaml:"created"` R *datahistoryjobR `boil:"-" json:"-" toml:"-" yaml:"-"` L datahistoryjobL `boil:"-" json:"-" toml:"-" yaml:"-"` } var DatahistoryjobColumns = struct { ID string Nickname string ExchangeNameID string Asset string Base string Quote string StartTime string EndTime string Interval string DataType string RequestSize string MaxRetries string BatchCount string Status string Created string }{ ID: "id", Nickname: "nickname", ExchangeNameID: "exchange_name_id", Asset: "asset", Base: "base", Quote: "quote", StartTime: "start_time", EndTime: "end_time", Interval: "interval", DataType: "data_type", RequestSize: "request_size", MaxRetries: "max_retries", BatchCount: "batch_count", Status: "status", Created: "created", } // Generated where var DatahistoryjobWhere = struct { ID whereHelperstring Nickname whereHelperstring ExchangeNameID whereHelperstring Asset whereHelperstring Base whereHelperstring Quote whereHelperstring StartTime whereHelperstring EndTime whereHelperstring Interval whereHelperfloat64 DataType whereHelperfloat64 RequestSize whereHelperfloat64 MaxRetries whereHelperfloat64 BatchCount whereHelperfloat64 Status whereHelperfloat64 Created whereHelperstring }{ ID: whereHelperstring{field: "\"datahistoryjob\".\"id\""}, Nickname: whereHelperstring{field: "\"datahistoryjob\".\"nickname\""}, ExchangeNameID: whereHelperstring{field: "\"datahistoryjob\".\"exchange_name_id\""}, Asset: whereHelperstring{field: "\"datahistoryjob\".\"asset\""}, Base: whereHelperstring{field: "\"datahistoryjob\".\"base\""}, Quote: whereHelperstring{field: "\"datahistoryjob\".\"quote\""}, StartTime: whereHelperstring{field: "\"datahistoryjob\".\"start_time\""}, EndTime: whereHelperstring{field: "\"datahistoryjob\".\"end_time\""}, Interval: whereHelperfloat64{field: "\"datahistoryjob\".\"interval\""}, DataType: whereHelperfloat64{field: "\"datahistoryjob\".\"data_type\""}, RequestSize: whereHelperfloat64{field: "\"datahistoryjob\".\"request_size\""}, MaxRetries: whereHelperfloat64{field: "\"datahistoryjob\".\"max_retries\""}, BatchCount: whereHelperfloat64{field: "\"datahistoryjob\".\"batch_count\""}, Status: whereHelperfloat64{field: "\"datahistoryjob\".\"status\""}, Created: whereHelperstring{field: "\"datahistoryjob\".\"created\""}, } // DatahistoryjobRels is where relationship names are stored. var DatahistoryjobRels = struct { ExchangeName string JobDatahistoryjobresults string }{ ExchangeName: "ExchangeName", JobDatahistoryjobresults: "JobDatahistoryjobresults", } // datahistoryjobR is where relationships are stored. type datahistoryjobR struct { ExchangeName *Exchange JobDatahistoryjobresults DatahistoryjobresultSlice } // NewStruct creates a new relationship struct func (*datahistoryjobR) NewStruct() *datahistoryjobR { return &datahistoryjobR{} } // datahistoryjobL is where Load methods for each relationship are stored. type datahistoryjobL struct{} var ( datahistoryjobAllColumns = []string{"id", "nickname", "exchange_name_id", "asset", "base", "quote", "start_time", "end_time", "interval", "data_type", "request_size", "max_retries", "batch_count", "status", "created"} datahistoryjobColumnsWithoutDefault = []string{"id", "nickname", "exchange_name_id", "asset", "base", "quote", "start_time", "end_time", "interval", "data_type", "request_size", "max_retries", "batch_count", "status"} datahistoryjobColumnsWithDefault = []string{"created"} datahistoryjobPrimaryKeyColumns = []string{"id"} ) type ( // DatahistoryjobSlice is an alias for a slice of pointers to Datahistoryjob. // This should generally be used opposed to []Datahistoryjob. DatahistoryjobSlice []*Datahistoryjob // DatahistoryjobHook is the signature for custom Datahistoryjob hook methods DatahistoryjobHook func(context.Context, boil.ContextExecutor, *Datahistoryjob) error datahistoryjobQuery struct { *queries.Query } ) // Cache for insert, update and upsert var ( datahistoryjobType = reflect.TypeOf(&Datahistoryjob{}) datahistoryjobMapping = queries.MakeStructMapping(datahistoryjobType) datahistoryjobPrimaryKeyMapping, _ = queries.BindMapping(datahistoryjobType, datahistoryjobMapping, datahistoryjobPrimaryKeyColumns) datahistoryjobInsertCacheMut sync.RWMutex datahistoryjobInsertCache = make(map[string]insertCache) datahistoryjobUpdateCacheMut sync.RWMutex datahistoryjobUpdateCache = make(map[string]updateCache) datahistoryjobUpsertCacheMut sync.RWMutex datahistoryjobUpsertCache = make(map[string]insertCache) ) var ( // Force time package dependency for automated UpdatedAt/CreatedAt. _ = time.Second // Force qmhelper dependency for where clause generation (which doesn't // always happen) _ = qmhelper.Where ) var datahistoryjobBeforeInsertHooks []DatahistoryjobHook var datahistoryjobBeforeUpdateHooks []DatahistoryjobHook var datahistoryjobBeforeDeleteHooks []DatahistoryjobHook var datahistoryjobBeforeUpsertHooks []DatahistoryjobHook var datahistoryjobAfterInsertHooks []DatahistoryjobHook var datahistoryjobAfterSelectHooks []DatahistoryjobHook var datahistoryjobAfterUpdateHooks []DatahistoryjobHook var datahistoryjobAfterDeleteHooks []DatahistoryjobHook var datahistoryjobAfterUpsertHooks []DatahistoryjobHook // doBeforeInsertHooks executes all "before insert" hooks. func (o *Datahistoryjob) doBeforeInsertHooks(ctx context.Context, exec boil.ContextExecutor) (err error) { if boil.HooksAreSkipped(ctx) { return nil } for _, hook := range datahistoryjobBeforeInsertHooks { if err := hook(ctx, exec, o); err != nil { return err } } return nil } // doBeforeUpdateHooks executes all "before Update" hooks. func (o *Datahistoryjob) doBeforeUpdateHooks(ctx context.Context, exec boil.ContextExecutor) (err error) { if boil.HooksAreSkipped(ctx) { return nil } for _, hook := range datahistoryjobBeforeUpdateHooks { if err := hook(ctx, exec, o); err != nil { return err } } return nil } // doBeforeDeleteHooks executes all "before Delete" hooks. func (o *Datahistoryjob) doBeforeDeleteHooks(ctx context.Context, exec boil.ContextExecutor) (err error) { if boil.HooksAreSkipped(ctx) { return nil } for _, hook := range datahistoryjobBeforeDeleteHooks { if err := hook(ctx, exec, o); err != nil { return err } } return nil } // doBeforeUpsertHooks executes all "before Upsert" hooks. func (o *Datahistoryjob) doBeforeUpsertHooks(ctx context.Context, exec boil.ContextExecutor) (err error) { if boil.HooksAreSkipped(ctx) { return nil } for _, hook := range datahistoryjobBeforeUpsertHooks { if err := hook(ctx, exec, o); err != nil { return err } } return nil } // doAfterInsertHooks executes all "after Insert" hooks. func (o *Datahistoryjob) doAfterInsertHooks(ctx context.Context, exec boil.ContextExecutor) (err error) { if boil.HooksAreSkipped(ctx) { return nil } for _, hook := range datahistoryjobAfterInsertHooks { if err := hook(ctx, exec, o); err != nil { return err } } return nil } // doAfterSelectHooks executes all "after Select" hooks. func (o *Datahistoryjob) doAfterSelectHooks(ctx context.Context, exec boil.ContextExecutor) (err error) { if boil.HooksAreSkipped(ctx) { return nil } for _, hook := range datahistoryjobAfterSelectHooks { if err := hook(ctx, exec, o); err != nil { return err } } return nil } // doAfterUpdateHooks executes all "after Update" hooks. func (o *Datahistoryjob) doAfterUpdateHooks(ctx context.Context, exec boil.ContextExecutor) (err error) { if boil.HooksAreSkipped(ctx) { return nil } for _, hook := range datahistoryjobAfterUpdateHooks { if err := hook(ctx, exec, o); err != nil { return err } } return nil } // doAfterDeleteHooks executes all "after Delete" hooks. func (o *Datahistoryjob) doAfterDeleteHooks(ctx context.Context, exec boil.ContextExecutor) (err error) { if boil.HooksAreSkipped(ctx) { return nil } for _, hook := range datahistoryjobAfterDeleteHooks { if err := hook(ctx, exec, o); err != nil { return err } } return nil } // doAfterUpsertHooks executes all "after Upsert" hooks. func (o *Datahistoryjob) doAfterUpsertHooks(ctx context.Context, exec boil.ContextExecutor) (err error) { if boil.HooksAreSkipped(ctx) { return nil } for _, hook := range datahistoryjobAfterUpsertHooks { if err := hook(ctx, exec, o); err != nil { return err } } return nil } // AddDatahistoryjobHook registers your hook function for all future operations. func AddDatahistoryjobHook(hookPoint boil.HookPoint, datahistoryjobHook DatahistoryjobHook) { switch hookPoint { case boil.BeforeInsertHook: datahistoryjobBeforeInsertHooks = append(datahistoryjobBeforeInsertHooks, datahistoryjobHook) case boil.BeforeUpdateHook: datahistoryjobBeforeUpdateHooks = append(datahistoryjobBeforeUpdateHooks, datahistoryjobHook) case boil.BeforeDeleteHook: datahistoryjobBeforeDeleteHooks = append(datahistoryjobBeforeDeleteHooks, datahistoryjobHook) case boil.BeforeUpsertHook: datahistoryjobBeforeUpsertHooks = append(datahistoryjobBeforeUpsertHooks, datahistoryjobHook) case boil.AfterInsertHook: datahistoryjobAfterInsertHooks = append(datahistoryjobAfterInsertHooks, datahistoryjobHook) case boil.AfterSelectHook: datahistoryjobAfterSelectHooks = append(datahistoryjobAfterSelectHooks, datahistoryjobHook) case boil.AfterUpdateHook: datahistoryjobAfterUpdateHooks = append(datahistoryjobAfterUpdateHooks, datahistoryjobHook) case boil.AfterDeleteHook: datahistoryjobAfterDeleteHooks = append(datahistoryjobAfterDeleteHooks, datahistoryjobHook) case boil.AfterUpsertHook: datahistoryjobAfterUpsertHooks = append(datahistoryjobAfterUpsertHooks, datahistoryjobHook) } } // One returns a single datahistoryjob record from the query. func (q datahistoryjobQuery) One(ctx context.Context, exec boil.ContextExecutor) (*Datahistoryjob, error) { o := &Datahistoryjob{} queries.SetLimit(q.Query, 1) err := q.Bind(ctx, exec, o) if err != nil { if errors.Cause(err) == sql.ErrNoRows { return nil, sql.ErrNoRows } return nil, errors.Wrap(err, "sqlite3: failed to execute a one query for datahistoryjob") } if err := o.doAfterSelectHooks(ctx, exec); err != nil { return o, err } return o, nil } // All returns all Datahistoryjob records from the query. func (q datahistoryjobQuery) All(ctx context.Context, exec boil.ContextExecutor) (DatahistoryjobSlice, error) { var o []*Datahistoryjob err := q.Bind(ctx, exec, &o) if err != nil { return nil, errors.Wrap(err, "sqlite3: failed to assign all query results to Datahistoryjob slice") } if len(datahistoryjobAfterSelectHooks) != 0 { for _, obj := range o { if err := obj.doAfterSelectHooks(ctx, exec); err != nil { return o, err } } } return o, nil } // Count returns the count of all Datahistoryjob records in the query. func (q datahistoryjobQuery) Count(ctx context.Context, exec boil.ContextExecutor) (int64, error) { var count int64 queries.SetSelect(q.Query, nil) queries.SetCount(q.Query) err := q.Query.QueryRowContext(ctx, exec).Scan(&count) if err != nil { return 0, errors.Wrap(err, "sqlite3: failed to count datahistoryjob rows") } return count, nil } // Exists checks if the row exists in the table. func (q datahistoryjobQuery) Exists(ctx context.Context, exec boil.ContextExecutor) (bool, error) { var count int64 queries.SetSelect(q.Query, nil) queries.SetCount(q.Query) queries.SetLimit(q.Query, 1) err := q.Query.QueryRowContext(ctx, exec).Scan(&count) if err != nil { return false, errors.Wrap(err, "sqlite3: failed to check if datahistoryjob exists") } return count > 0, nil } // ExchangeName pointed to by the foreign key. func (o *Datahistoryjob) ExchangeName(mods ...qm.QueryMod) exchangeQuery { queryMods := []qm.QueryMod{ qm.Where("\"id\" = ?", o.ExchangeNameID), } queryMods = append(queryMods, mods...) query := Exchanges(queryMods...) queries.SetFrom(query.Query, "\"exchange\"") return query } // JobDatahistoryjobresults retrieves all the datahistoryjobresult's Datahistoryjobresults with an executor via job_id column. func (o *Datahistoryjob) JobDatahistoryjobresults(mods ...qm.QueryMod) datahistoryjobresultQuery { var queryMods []qm.QueryMod if len(mods) != 0 { queryMods = append(queryMods, mods...) } queryMods = append(queryMods, qm.Where("\"datahistoryjobresult\".\"job_id\"=?", o.ID), ) query := Datahistoryjobresults(queryMods...) queries.SetFrom(query.Query, "\"datahistoryjobresult\"") if len(queries.GetSelect(query.Query)) == 0 { queries.SetSelect(query.Query, []string{"\"datahistoryjobresult\".*"}) } return query } // LoadExchangeName allows an eager lookup of values, cached into the // loaded structs of the objects. This is for an N-1 relationship. func (datahistoryjobL) LoadExchangeName(ctx context.Context, e boil.ContextExecutor, singular bool, maybeDatahistoryjob interface{}, mods queries.Applicator) error { var slice []*Datahistoryjob var object *Datahistoryjob if singular { object = maybeDatahistoryjob.(*Datahistoryjob) } else { slice = *maybeDatahistoryjob.(*[]*Datahistoryjob) } args := make([]interface{}, 0, 1) if singular { if object.R == nil { object.R = &datahistoryjobR{} } args = append(args, object.ExchangeNameID) } else { Outer: for _, obj := range slice { if obj.R == nil { obj.R = &datahistoryjobR{} } for _, a := range args { if a == obj.ExchangeNameID { continue Outer } } args = append(args, obj.ExchangeNameID) } } if len(args) == 0 { return nil } query := NewQuery(qm.From(`exchange`), qm.WhereIn(`exchange.id in ?`, args...)) if mods != nil { mods.Apply(query) } results, err := query.QueryContext(ctx, e) if err != nil { return errors.Wrap(err, "failed to eager load Exchange") } var resultSlice []*Exchange if err = queries.Bind(results, &resultSlice); err != nil { return errors.Wrap(err, "failed to bind eager loaded slice Exchange") } if err = results.Close(); err != nil { return errors.Wrap(err, "failed to close results of eager load for exchange") } if err = results.Err(); err != nil { return errors.Wrap(err, "error occurred during iteration of eager loaded relations for exchange") } if len(datahistoryjobAfterSelectHooks) != 0 { for _, obj := range resultSlice { if err := obj.doAfterSelectHooks(ctx, e); err != nil { return err } } } if len(resultSlice) == 0 { return nil } if singular { foreign := resultSlice[0] object.R.ExchangeName = foreign if foreign.R == nil { foreign.R = &exchangeR{} } foreign.R.ExchangeNameDatahistoryjobs = append(foreign.R.ExchangeNameDatahistoryjobs, object) return nil } for _, local := range slice { for _, foreign := range resultSlice { if local.ExchangeNameID == foreign.ID { local.R.ExchangeName = foreign if foreign.R == nil { foreign.R = &exchangeR{} } foreign.R.ExchangeNameDatahistoryjobs = append(foreign.R.ExchangeNameDatahistoryjobs, local) break } } } return nil } // LoadJobDatahistoryjobresults allows an eager lookup of values, cached into the // loaded structs of the objects. This is for a 1-M or N-M relationship. func (datahistoryjobL) LoadJobDatahistoryjobresults(ctx context.Context, e boil.ContextExecutor, singular bool, maybeDatahistoryjob interface{}, mods queries.Applicator) error { var slice []*Datahistoryjob var object *Datahistoryjob if singular { object = maybeDatahistoryjob.(*Datahistoryjob) } else { slice = *maybeDatahistoryjob.(*[]*Datahistoryjob) } args := make([]interface{}, 0, 1) if singular { if object.R == nil { object.R = &datahistoryjobR{} } args = append(args, object.ID) } else { Outer: for _, obj := range slice { if obj.R == nil { obj.R = &datahistoryjobR{} } for _, a := range args { if a == obj.ID { continue Outer } } args = append(args, obj.ID) } } if len(args) == 0 { return nil } query := NewQuery(qm.From(`datahistoryjobresult`), qm.WhereIn(`datahistoryjobresult.job_id in ?`, args...)) if mods != nil { mods.Apply(query) } results, err := query.QueryContext(ctx, e) if err != nil { return errors.Wrap(err, "failed to eager load datahistoryjobresult") } var resultSlice []*Datahistoryjobresult if err = queries.Bind(results, &resultSlice); err != nil { return errors.Wrap(err, "failed to bind eager loaded slice datahistoryjobresult") } if err = results.Close(); err != nil { return errors.Wrap(err, "failed to close results in eager load on datahistoryjobresult") } if err = results.Err(); err != nil { return errors.Wrap(err, "error occurred during iteration of eager loaded relations for datahistoryjobresult") } if len(datahistoryjobresultAfterSelectHooks) != 0 { for _, obj := range resultSlice { if err := obj.doAfterSelectHooks(ctx, e); err != nil { return err } } } if singular { object.R.JobDatahistoryjobresults = resultSlice for _, foreign := range resultSlice { if foreign.R == nil { foreign.R = &datahistoryjobresultR{} } foreign.R.Job = object } return nil } for _, foreign := range resultSlice { for _, local := range slice { if local.ID == foreign.JobID { local.R.JobDatahistoryjobresults = append(local.R.JobDatahistoryjobresults, foreign) if foreign.R == nil { foreign.R = &datahistoryjobresultR{} } foreign.R.Job = local break } } } return nil } // SetExchangeName of the datahistoryjob to the related item. // Sets o.R.ExchangeName to related. // Adds o to related.R.ExchangeNameDatahistoryjobs. func (o *Datahistoryjob) SetExchangeName(ctx context.Context, exec boil.ContextExecutor, insert bool, related *Exchange) error { var err error if insert { if err = related.Insert(ctx, exec, boil.Infer()); err != nil { return errors.Wrap(err, "failed to insert into foreign table") } } updateQuery := fmt.Sprintf( "UPDATE \"datahistoryjob\" SET %s WHERE %s", strmangle.SetParamNames("\"", "\"", 0, []string{"exchange_name_id"}), strmangle.WhereClause("\"", "\"", 0, datahistoryjobPrimaryKeyColumns), ) values := []interface{}{related.ID, o.ID} if boil.DebugMode { fmt.Fprintln(boil.DebugWriter, updateQuery) fmt.Fprintln(boil.DebugWriter, values) } if _, err = exec.ExecContext(ctx, updateQuery, values...); err != nil { return errors.Wrap(err, "failed to update local table") } o.ExchangeNameID = related.ID if o.R == nil { o.R = &datahistoryjobR{ ExchangeName: related, } } else { o.R.ExchangeName = related } if related.R == nil { related.R = &exchangeR{ ExchangeNameDatahistoryjobs: DatahistoryjobSlice{o}, } } else { related.R.ExchangeNameDatahistoryjobs = append(related.R.ExchangeNameDatahistoryjobs, o) } return nil } // AddJobDatahistoryjobresults adds the given related objects to the existing relationships // of the datahistoryjob, optionally inserting them as new records. // Appends related to o.R.JobDatahistoryjobresults. // Sets related.R.Job appropriately. func (o *Datahistoryjob) AddJobDatahistoryjobresults(ctx context.Context, exec boil.ContextExecutor, insert bool, related ...*Datahistoryjobresult) error { var err error for _, rel := range related { if insert { rel.JobID = o.ID if err = rel.Insert(ctx, exec, boil.Infer()); err != nil { return errors.Wrap(err, "failed to insert into foreign table") } } else { updateQuery := fmt.Sprintf( "UPDATE \"datahistoryjobresult\" SET %s WHERE %s", strmangle.SetParamNames("\"", "\"", 0, []string{"job_id"}), strmangle.WhereClause("\"", "\"", 0, datahistoryjobresultPrimaryKeyColumns), ) values := []interface{}{o.ID, rel.ID} if boil.DebugMode { fmt.Fprintln(boil.DebugWriter, updateQuery) fmt.Fprintln(boil.DebugWriter, values) } if _, err = exec.ExecContext(ctx, updateQuery, values...); err != nil { return errors.Wrap(err, "failed to update foreign table") } rel.JobID = o.ID } } if o.R == nil { o.R = &datahistoryjobR{ JobDatahistoryjobresults: related, } } else { o.R.JobDatahistoryjobresults = append(o.R.JobDatahistoryjobresults, related...) } for _, rel := range related { if rel.R == nil { rel.R = &datahistoryjobresultR{ Job: o, } } else { rel.R.Job = o } } return nil } // Datahistoryjobs retrieves all the records using an executor. func Datahistoryjobs(mods ...qm.QueryMod) datahistoryjobQuery { mods = append(mods, qm.From("\"datahistoryjob\"")) return datahistoryjobQuery{NewQuery(mods...)} } // FindDatahistoryjob retrieves a single record by ID with an executor. // If selectCols is empty Find will return all columns. func FindDatahistoryjob(ctx context.Context, exec boil.ContextExecutor, iD string, selectCols ...string) (*Datahistoryjob, error) { datahistoryjobObj := &Datahistoryjob{} sel := "*" if len(selectCols) > 0 { sel = strings.Join(strmangle.IdentQuoteSlice(dialect.LQ, dialect.RQ, selectCols), ",") } query := fmt.Sprintf( "select %s from \"datahistoryjob\" where \"id\"=?", sel, ) q := queries.Raw(query, iD) err := q.Bind(ctx, exec, datahistoryjobObj) if err != nil { if errors.Cause(err) == sql.ErrNoRows { return nil, sql.ErrNoRows } return nil, errors.Wrap(err, "sqlite3: unable to select from datahistoryjob") } return datahistoryjobObj, nil } // Insert a single record using an executor. // See boil.Columns.InsertColumnSet documentation to understand column list inference for inserts. func (o *Datahistoryjob) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error { if o == nil { return errors.New("sqlite3: no datahistoryjob provided for insertion") } var err error if err := o.doBeforeInsertHooks(ctx, exec); err != nil { return err } nzDefaults := queries.NonZeroDefaultSet(datahistoryjobColumnsWithDefault, o) key := makeCacheKey(columns, nzDefaults) datahistoryjobInsertCacheMut.RLock() cache, cached := datahistoryjobInsertCache[key] datahistoryjobInsertCacheMut.RUnlock() if !cached { wl, returnColumns := columns.InsertColumnSet( datahistoryjobAllColumns, datahistoryjobColumnsWithDefault, datahistoryjobColumnsWithoutDefault, nzDefaults, ) cache.valueMapping, err = queries.BindMapping(datahistoryjobType, datahistoryjobMapping, wl) if err != nil { return err } cache.retMapping, err = queries.BindMapping(datahistoryjobType, datahistoryjobMapping, returnColumns) if err != nil { return err } if len(wl) != 0 { cache.query = fmt.Sprintf("INSERT INTO \"datahistoryjob\" (\"%s\") %%sVALUES (%s)%%s", strings.Join(wl, "\",\""), strmangle.Placeholders(dialect.UseIndexPlaceholders, len(wl), 1, 1)) } else { cache.query = "INSERT INTO \"datahistoryjob\" () VALUES ()%s%s" } var queryOutput, queryReturning string if len(cache.retMapping) != 0 { cache.retQuery = fmt.Sprintf("SELECT \"%s\" FROM \"datahistoryjob\" WHERE %s", strings.Join(returnColumns, "\",\""), strmangle.WhereClause("\"", "\"", 0, datahistoryjobPrimaryKeyColumns)) } cache.query = fmt.Sprintf(cache.query, queryOutput, queryReturning) } value := reflect.Indirect(reflect.ValueOf(o)) vals := queries.ValuesFromMapping(value, cache.valueMapping) if boil.DebugMode { fmt.Fprintln(boil.DebugWriter, cache.query) fmt.Fprintln(boil.DebugWriter, vals) } _, err = exec.ExecContext(ctx, cache.query, vals...) if err != nil { return errors.Wrap(err, "sqlite3: unable to insert into datahistoryjob") } var identifierCols []interface{} if len(cache.retMapping) == 0 { goto CacheNoHooks } identifierCols = []interface{}{ o.ID, } if boil.DebugMode { fmt.Fprintln(boil.DebugWriter, cache.retQuery) fmt.Fprintln(boil.DebugWriter, identifierCols...) } err = exec.QueryRowContext(ctx, cache.retQuery, identifierCols...).Scan(queries.PtrsFromMapping(value, cache.retMapping)...) if err != nil { return errors.Wrap(err, "sqlite3: unable to populate default values for datahistoryjob") } CacheNoHooks: if !cached { datahistoryjobInsertCacheMut.Lock() datahistoryjobInsertCache[key] = cache datahistoryjobInsertCacheMut.Unlock() } return o.doAfterInsertHooks(ctx, exec) } // Update uses an executor to update the Datahistoryjob. // 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 (o *Datahistoryjob) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) { var err error if err = o.doBeforeUpdateHooks(ctx, exec); err != nil { return 0, err } key := makeCacheKey(columns, nil) datahistoryjobUpdateCacheMut.RLock() cache, cached := datahistoryjobUpdateCache[key] datahistoryjobUpdateCacheMut.RUnlock() if !cached { wl := columns.UpdateColumnSet( datahistoryjobAllColumns, datahistoryjobPrimaryKeyColumns, ) if len(wl) == 0 { return 0, errors.New("sqlite3: unable to update datahistoryjob, could not build whitelist") } cache.query = fmt.Sprintf("UPDATE \"datahistoryjob\" SET %s WHERE %s", strmangle.SetParamNames("\"", "\"", 0, wl), strmangle.WhereClause("\"", "\"", 0, datahistoryjobPrimaryKeyColumns), ) cache.valueMapping, err = queries.BindMapping(datahistoryjobType, datahistoryjobMapping, append(wl, datahistoryjobPrimaryKeyColumns...)) if err != nil { return 0, err } } values := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(o)), cache.valueMapping) if boil.DebugMode { fmt.Fprintln(boil.DebugWriter, cache.query) fmt.Fprintln(boil.DebugWriter, values) } var result sql.Result result, err = exec.ExecContext(ctx, cache.query, values...) if err != nil { return 0, errors.Wrap(err, "sqlite3: unable to update datahistoryjob row") } rowsAff, err := result.RowsAffected() if err != nil { return 0, errors.Wrap(err, "sqlite3: failed to get rows affected by update for datahistoryjob") } if !cached { datahistoryjobUpdateCacheMut.Lock() datahistoryjobUpdateCache[key] = cache datahistoryjobUpdateCacheMut.Unlock() } return rowsAff, o.doAfterUpdateHooks(ctx, exec) } // UpdateAll updates all rows with the specified column values. func (q datahistoryjobQuery) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) { queries.SetUpdate(q.Query, cols) result, err := q.Query.ExecContext(ctx, exec) if err != nil { return 0, errors.Wrap(err, "sqlite3: unable to update all for datahistoryjob") } rowsAff, err := result.RowsAffected() if err != nil { return 0, errors.Wrap(err, "sqlite3: unable to retrieve rows affected for datahistoryjob") } return rowsAff, nil } // UpdateAll updates all rows with the specified column values, using an executor. func (o DatahistoryjobSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) { ln := int64(len(o)) if ln == 0 { return 0, nil } if len(cols) == 0 { return 0, errors.New("sqlite3: update all requires at least one column argument") } colNames := make([]string, len(cols)) args := make([]interface{}, len(cols)) i := 0 for name, value := range cols { colNames[i] = name args[i] = value i++ } // Append all of the primary key values for each column for _, obj := range o { pkeyArgs := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(obj)), datahistoryjobPrimaryKeyMapping) args = append(args, pkeyArgs...) } sql := fmt.Sprintf("UPDATE \"datahistoryjob\" SET %s WHERE %s", strmangle.SetParamNames("\"", "\"", 0, colNames), strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 0, datahistoryjobPrimaryKeyColumns, len(o))) if boil.DebugMode { fmt.Fprintln(boil.DebugWriter, sql) fmt.Fprintln(boil.DebugWriter, args...) } result, err := exec.ExecContext(ctx, sql, args...) if err != nil { return 0, errors.Wrap(err, "sqlite3: unable to update all in datahistoryjob slice") } rowsAff, err := result.RowsAffected() if err != nil { return 0, errors.Wrap(err, "sqlite3: unable to retrieve rows affected all in update all datahistoryjob") } return rowsAff, nil } // Delete deletes a single Datahistoryjob record with an executor. // Delete will match against the primary key column to find the record to delete. func (o *Datahistoryjob) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) { if o == nil { return 0, errors.New("sqlite3: no Datahistoryjob provided for delete") } if err := o.doBeforeDeleteHooks(ctx, exec); err != nil { return 0, err } args := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(o)), datahistoryjobPrimaryKeyMapping) sql := "DELETE FROM \"datahistoryjob\" WHERE \"id\"=?" if boil.DebugMode { fmt.Fprintln(boil.DebugWriter, sql) fmt.Fprintln(boil.DebugWriter, args...) } result, err := exec.ExecContext(ctx, sql, args...) if err != nil { return 0, errors.Wrap(err, "sqlite3: unable to delete from datahistoryjob") } rowsAff, err := result.RowsAffected() if err != nil { return 0, errors.Wrap(err, "sqlite3: failed to get rows affected by delete for datahistoryjob") } if err := o.doAfterDeleteHooks(ctx, exec); err != nil { return 0, err } return rowsAff, nil } // DeleteAll deletes all matching rows. func (q datahistoryjobQuery) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) { if q.Query == nil { return 0, errors.New("sqlite3: no datahistoryjobQuery provided for delete all") } queries.SetDelete(q.Query) result, err := q.Query.ExecContext(ctx, exec) if err != nil { return 0, errors.Wrap(err, "sqlite3: unable to delete all from datahistoryjob") } rowsAff, err := result.RowsAffected() if err != nil { return 0, errors.Wrap(err, "sqlite3: failed to get rows affected by deleteall for datahistoryjob") } return rowsAff, nil } // DeleteAll deletes all rows in the slice, using an executor. func (o DatahistoryjobSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) { if len(o) == 0 { return 0, nil } if len(datahistoryjobBeforeDeleteHooks) != 0 { for _, obj := range o { if err := obj.doBeforeDeleteHooks(ctx, exec); err != nil { return 0, err } } } var args []interface{} for _, obj := range o { pkeyArgs := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(obj)), datahistoryjobPrimaryKeyMapping) args = append(args, pkeyArgs...) } sql := "DELETE FROM \"datahistoryjob\" WHERE " + strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 0, datahistoryjobPrimaryKeyColumns, len(o)) if boil.DebugMode { fmt.Fprintln(boil.DebugWriter, sql) fmt.Fprintln(boil.DebugWriter, args) } result, err := exec.ExecContext(ctx, sql, args...) if err != nil { return 0, errors.Wrap(err, "sqlite3: unable to delete all from datahistoryjob slice") } rowsAff, err := result.RowsAffected() if err != nil { return 0, errors.Wrap(err, "sqlite3: failed to get rows affected by deleteall for datahistoryjob") } if len(datahistoryjobAfterDeleteHooks) != 0 { for _, obj := range o { if err := obj.doAfterDeleteHooks(ctx, exec); err != nil { return 0, err } } } return rowsAff, nil } // Reload refetches the object from the database // using the primary keys with an executor. func (o *Datahistoryjob) Reload(ctx context.Context, exec boil.ContextExecutor) error { ret, err := FindDatahistoryjob(ctx, exec, o.ID) if err != nil { return err } *o = *ret return nil } // ReloadAll refetches every row with matching primary key column values // and overwrites the original object slice with the newly updated slice. func (o *DatahistoryjobSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error { if o == nil || len(*o) == 0 { return nil } slice := DatahistoryjobSlice{} var args []interface{} for _, obj := range *o { pkeyArgs := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(obj)), datahistoryjobPrimaryKeyMapping) args = append(args, pkeyArgs...) } sql := "SELECT \"datahistoryjob\".* FROM \"datahistoryjob\" WHERE " + strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 0, datahistoryjobPrimaryKeyColumns, len(*o)) q := queries.Raw(sql, args...) err := q.Bind(ctx, exec, &slice) if err != nil { return errors.Wrap(err, "sqlite3: unable to reload all in DatahistoryjobSlice") } *o = slice return nil } // DatahistoryjobExists checks if the Datahistoryjob row exists. func DatahistoryjobExists(ctx context.Context, exec boil.ContextExecutor, iD string) (bool, error) { var exists bool sql := "select exists(select 1 from \"datahistoryjob\" where \"id\"=? limit 1)" if boil.DebugMode { fmt.Fprintln(boil.DebugWriter, sql) fmt.Fprintln(boil.DebugWriter, iD) } row := exec.QueryRowContext(ctx, sql, iD) err := row.Scan(&exists) if err != nil { return false, errors.Wrap(err, "sqlite3: unable to check if datahistoryjob exists") } return exists, nil }