(ctx context.Context, s string)
| 211 | ` |
| 212 | |
| 213 | func (q *Queries) SayHello(ctx context.Context, s string) (pgtype.Text, error) { |
| 214 | row := q.db.QueryRow(ctx, sayHello, s) |
| 215 | var say_hello pgtype.Text |
| 216 | err := row.Scan(&say_hello) |
| 217 | return say_hello, err |
| 218 | } |
| 219 | |
| 220 | const updateBook = `-- name: UpdateBook :exec |
| 221 | UPDATE books |