From 20287a37409205e8838cff616593ec54634088e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Garcia?= Date: Thu, 31 Dec 2020 13:31:30 -0300 Subject: [PATCH] Add Exec() function to the API --- contracts.go | 2 ++ kiss_orm.go | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/contracts.go b/contracts.go index 35ccc23..f854f7c 100644 --- a/contracts.go +++ b/contracts.go @@ -20,6 +20,8 @@ type ORMProvider interface { Query(ctx context.Context, records interface{}, query string, params ...interface{}) error QueryOne(ctx context.Context, record interface{}, query string, params ...interface{}) error QueryChunks(ctx context.Context, parser ChunkParser) error + + Exec(ctx context.Context, query string, params ...interface{}) error } // ChunkParser stores the arguments of the QueryChunks function diff --git a/kiss_orm.go b/kiss_orm.go index 0cb1920..654d5e7 100644 --- a/kiss_orm.go +++ b/kiss_orm.go @@ -657,6 +657,12 @@ func FillSliceWith(entities interface{}, dbRows []map[string]interface{}) error return nil } +// Exec just runs an SQL command on the database returning no rows. +func (c Client) Exec(ctx context.Context, query string, params ...interface{}) error { + _, err := c.db.ExecContext(ctx, query, params...) + return err +} + func decodeAsSliceOfStructs(slice reflect.Type) ( structType reflect.Type, isSliceOfPtrs bool,