func (s *SQL) runExecer() (interface{}, error) {
    ctx := context.Background()
    result, err := s.Config.Execer.ExecContext(ctx, s.Config.Query, s.Config.Params...)
    if err != nil {
        return nil, err