ScanContext is a shortcut for QueryRowContext().Scan.
(ctx context.Context, dest ...interface{})
| 65 | |
| 66 | // ScanContext is a shortcut for QueryRowContext().Scan. |
| 67 | func (b InsertBuilder) ScanContext(ctx context.Context, dest ...interface{}) error { |
| 68 | return b.QueryRowContext(ctx).Scan(dest...) |
| 69 | } |