QueryRowContextWith QueryRowContexts the SQL returned by s with db.
(ctx context.Context, db QueryRowerContext, s Sqlizer)
| 88 | |
| 89 | // QueryRowContextWith QueryRowContexts the SQL returned by s with db. |
| 90 | func QueryRowContextWith(ctx context.Context, db QueryRowerContext, s Sqlizer) RowScanner { |
| 91 | query, args, err := s.ToSql() |
| 92 | return &Row{RowScanner: db.QueryRowContext(ctx, query, args...), err: err} |
| 93 | } |
searching dependent graphs…