Add Exec() function to the API

pull/2/head
Vinícius Garcia 2020-12-31 13:31:30 -03:00
parent 8a65da552f
commit 20287a3740
2 changed files with 8 additions and 0 deletions

View File

@ -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

View File

@ -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,