12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // Code generated by sqlc. DO NOT EDIT.
- // source: query-building.sql
- package jets
- import (
- "context"
- )
- const countPilots = `-- name: CountPilots :one
- SELECT COUNT(*) FROM pilots
- `
- func (q *Queries) CountPilots(ctx context.Context) (int64, error) {
- row := q.db.QueryRowContext(ctx, countPilots)
- var count int64
- err := row.Scan(&count)
- return count, err
- }
- const deletePilot = `-- name: DeletePilot :exec
- DELETE FROM pilots WHERE id = $1
- `
- func (q *Queries) DeletePilot(ctx context.Context, id int32) error {
- _, err := q.db.ExecContext(ctx, deletePilot, id)
- return err
- }
- const listPilots = `-- name: ListPilots :many
- SELECT id, name FROM pilots LIMIT 5
- `
- func (q *Queries) ListPilots(ctx context.Context) ([]Pilot, error) {
- rows, err := q.db.QueryContext(ctx, listPilots)
- if err != nil {
- return nil, err
- }
- defer rows.Close()
- var items []Pilot
- for rows.Next() {
- var i Pilot
- if err := rows.Scan(&i.ID, &i.Name); err != nil {
- return nil, err
- }
- items = append(items, i)
- }
- if err := rows.Close(); err != nil {
- return nil, err
- }
- if err := rows.Err(); err != nil {
- return nil, err
- }
- return items, nil
- }
|