2016-06-20 07:22:50 +02:00
|
|
|
{{- $tableNameSingular := .Table.Name | singular | titleCase -}}
|
|
|
|
{{- $varNameSingular := .Table.Name | singular | camelCase -}}
|
2016-06-27 08:56:05 +02:00
|
|
|
{{- $colDefs := sqlColDefinitions .Table.Columns .Table.PKey.Columns -}}
|
|
|
|
{{- $pkNames := $colDefs.Names | stringMap .StringFuncs.camelCase -}}
|
|
|
|
{{- $pkArgs := joinSlices " " $pkNames $colDefs.Types | join ", "}}
|
2016-08-04 05:23:55 +02:00
|
|
|
// UpdateG a single {{$tableNameSingular}} record. See Update for
|
|
|
|
// whitelist behavior description.
|
2016-08-01 07:10:10 +02:00
|
|
|
func (o *{{$tableNameSingular}}) UpdateG(whitelist ...string) error {
|
|
|
|
return o.Update(boil.GetDB(), whitelist...)
|
2016-04-17 11:25:09 +02:00
|
|
|
}
|
|
|
|
|
2016-08-01 07:10:10 +02:00
|
|
|
// UpdateGP a single {{$tableNameSingular}} record.
|
|
|
|
// UpdateGP takes a whitelist of column names that should be updated.
|
2016-08-04 05:23:55 +02:00
|
|
|
// Panics on error. See Update for whitelist behavior description.
|
2016-08-01 07:10:10 +02:00
|
|
|
func (o *{{$tableNameSingular}}) UpdateGP(whitelist ...string) {
|
|
|
|
if err := o.Update(boil.GetDB(), whitelist...); err != nil {
|
2016-07-16 13:22:57 +02:00
|
|
|
panic(boil.WrapErr(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-01 07:10:10 +02:00
|
|
|
// UpdateP uses an executor to update the {{$tableNameSingular}}, and panics on error.
|
2016-08-04 05:23:55 +02:00
|
|
|
// See Update for whitelist behavior description.
|
2016-08-01 07:10:10 +02:00
|
|
|
func (o *{{$tableNameSingular}}) UpdateP(exec boil.Executor, whitelist ... string) {
|
2016-08-04 16:20:17 +02:00
|
|
|
err := o.Update(exec, whitelist...)
|
2016-07-16 13:22:57 +02:00
|
|
|
if err != nil {
|
|
|
|
panic(boil.WrapErr(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-04 05:23:55 +02:00
|
|
|
// Update uses an executor to update the {{$tableNameSingular}}.
|
|
|
|
// Whitelist behavior: If a whitelist is provided, only the columns given are updated.
|
|
|
|
// No whitelist behavior: Without a whitelist, columns are inferred by the following rules:
|
2016-08-04 05:38:23 +02:00
|
|
|
// - All columns are inferred to start with
|
2016-08-04 05:23:55 +02:00
|
|
|
// - All primary keys are subtracted from this set
|
|
|
|
func (o *{{$tableNameSingular}}) Update(exec boil.Executor, whitelist ... string) error {
|
2016-04-13 15:51:58 +02:00
|
|
|
if err := o.doBeforeUpdateHooks(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-05-05 11:01:24 +02:00
|
|
|
var err error
|
2016-06-02 23:07:51 +02:00
|
|
|
var query string
|
2016-07-15 12:14:47 +02:00
|
|
|
var values []interface{}
|
|
|
|
|
|
|
|
wl := o.generateUpdateColumns(whitelist...)
|
|
|
|
|
|
|
|
if len(wl) != 0 {
|
2016-08-09 07:57:54 +02:00
|
|
|
query = fmt.Sprintf(`UPDATE {{.Table.Name}} SET %s WHERE %s`, strmangle.SetParamNames(wl), strmangle.WhereClause(len(wl)+1, {{$varNameSingular}}PrimaryKeyColumns))
|
2016-07-15 12:14:47 +02:00
|
|
|
values = boil.GetStructValues(o, wl...)
|
|
|
|
values = append(values, {{.Table.PKey.Columns | stringMap .StringFuncs.titleCase | prefixStringSlice "o." | join ", "}})
|
|
|
|
_, err = exec.Exec(query, values...)
|
2016-05-05 11:01:24 +02:00
|
|
|
} else {
|
2016-07-15 12:14:47 +02:00
|
|
|
return fmt.Errorf("{{.PkgName}}: unable to update {{.Table.Name}}, could not build whitelist")
|
2016-04-13 15:51:58 +02:00
|
|
|
}
|
|
|
|
|
2016-06-02 23:07:51 +02:00
|
|
|
if boil.DebugMode {
|
|
|
|
fmt.Fprintln(boil.DebugWriter, query)
|
2016-07-15 12:14:47 +02:00
|
|
|
fmt.Fprintln(boil.DebugWriter, values)
|
2016-06-02 23:07:51 +02:00
|
|
|
}
|
|
|
|
|
2016-03-19 07:22:10 +01:00
|
|
|
if err != nil {
|
2016-04-04 12:28:58 +02:00
|
|
|
return fmt.Errorf("{{.PkgName}}: unable to update {{.Table.Name}} row: %s", err)
|
2016-03-19 07:22:10 +01:00
|
|
|
}
|
|
|
|
|
2016-04-13 15:51:58 +02:00
|
|
|
if err := o.doAfterUpdateHooks(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-03-19 07:22:10 +01:00
|
|
|
return nil
|
|
|
|
}
|
2016-04-13 15:51:58 +02:00
|
|
|
|
2016-07-16 13:22:57 +02:00
|
|
|
// UpdateAll updates all rows with matching column names.
|
2016-05-10 12:20:29 +02:00
|
|
|
func (q {{$varNameSingular}}Query) UpdateAll(cols M) error {
|
|
|
|
boil.SetUpdate(q.Query, cols)
|
|
|
|
|
|
|
|
_, err := boil.ExecQuery(q.Query)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("{{.PkgName}}: unable to update all for {{.Table.Name}}: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2016-04-13 15:51:58 +02:00
|
|
|
}
|
2016-07-15 12:14:47 +02:00
|
|
|
|
2016-07-16 13:22:57 +02:00
|
|
|
// UpdateAllP updates all rows with matching column names, and panics on error.
|
|
|
|
func (q {{$varNameSingular}}Query) UpdateAllP(cols M) {
|
|
|
|
if err := q.UpdateAll(cols); err != nil {
|
|
|
|
panic(boil.WrapErr(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-15 12:14:47 +02:00
|
|
|
// generateUpdateColumns generates the whitelist columns for an update statement
|
2016-08-04 05:23:55 +02:00
|
|
|
// if a whitelist is supplied, it's returned
|
2016-08-04 05:38:23 +02:00
|
|
|
// if a whitelist is missing then we begin with all columns
|
|
|
|
// then we remove the primary key columns
|
2016-07-15 12:14:47 +02:00
|
|
|
func (o *{{$tableNameSingular}}) generateUpdateColumns(whitelist ...string) []string {
|
|
|
|
if len(whitelist) != 0 {
|
|
|
|
return whitelist
|
|
|
|
}
|
|
|
|
|
2016-08-04 05:55:25 +02:00
|
|
|
return boil.SetComplement({{$varNameSingular}}Columns, {{$varNameSingular}}PrimaryKeyColumns)
|
2016-07-15 12:14:47 +02:00
|
|
|
}
|