(ctx context.Context, db DBTX)
| 22 | } |
| 23 | |
| 24 | func Prepare(ctx context.Context, db DBTX) (*Queries, error) { |
| 25 | q := Queries{db: db} |
| 26 | var err error |
| 27 | if q.funcParamIdentStmt, err = db.PrepareContext(ctx, funcParamIdent); err != nil { |
| 28 | return nil, fmt.Errorf("error preparing query FuncParamIdent: %w", err) |
| 29 | } |
| 30 | return &q, nil |
| 31 | } |
| 32 | |
| 33 | func (q *Queries) Close() error { |
| 34 | var err error |
nothing calls this directly
no test coverage detected