mirror of https://github.com/VinGarcia/ksql.git
Add Exec() function to the API
parent
8a65da552f
commit
20287a3740
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue