You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package template
|
|
|
|
|
|
|
|
var Insert = `
|
|
|
|
func (m *{{.upperStartCamelObject}}Model) Insert(data {{.upperStartCamelObject}}) error {
|
|
|
|
{{if .withCache}}{{if .containsIndexCache}}{{.keys}}
|
|
|
|
_, err := m.Exec(func(conn sqlx.SqlConn) (result sql.Result, err error) {
|
|
|
|
query := ` + "`" + `insert into ` + "`" + ` + m.table + ` + "` (` + " + `{{.lowerStartCamelObject}}RowsExpectAutoSet` + " + `) values ({{.expression}})` " + `
|
|
|
|
return conn.Exec(query, {{.expressionValues}})
|
|
|
|
}, {{.keyValues}}){{else}}query := ` + "`" + `insert into ` + "`" + ` + m.table + ` + "` (` + " + `{{.lowerStartCamelObject}}RowsExpectAutoSet` + " + `) values ({{.expression}})` " + `
|
|
|
|
_,err:=m.ExecNoCache(query, {{.expressionValues}})
|
|
|
|
{{end}}{{else}}query := ` + "`" + `insert into ` + "`" + ` + m.table + ` + "` (` + " + `{{.lowerStartCamelObject}}RowsExpectAutoSet` + " + `) values ({{.expression}})` " + `
|
|
|
|
_,err:=m.conn.Exec(query, {{.expressionValues}}){{end}}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
`
|