Skip to content
Snippets Groups Projects
Commit 60392d21e886 authored by Christophe de Vienne's avatar Christophe de Vienne
Browse files

Add SQLHelper.InsertReturning

parent a61599c26216
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
import (
"context"
"database/sql"
"strings"
sq "github.com/Masterminds/squirrel"
"github.com/jmoiron/sqlx"
......@@ -135,6 +136,19 @@
return h.Exec(query)
}
// InsertReturning inserts instances and select the result
func (h *SQLHelper) InsertReturning(tgt interface{}, instances ...Mapped) error {
if len(instances) == 0 {
return nil
}
query := SQLInsert(instances...).
Suffix("RETURNING" + strings.Join(instances[0].Columns(true), ", "))
if len(instances) == 1 {
return h.Get(tgt, query)
}
return h.Select(tgt, query)
}
// InsertNoPKey inserts a Mapped into the db.
func (h *SQLHelper) InsertNoPKey(instances ...Mapped) (sql.Result, error) {
query := SQLInsertNoPKey(instances...)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment