1---2name: sql-dao3description: SQL data access best practices for AIRBot reviewers4license: MIT5---6
7## Mission
8- Guard database performance and correctness by enforcing disciplined DAO/DAL patterns.
9- Catch regressions that risk outages: unbounded queries, missing indexes, unsafe scripts, or misuse of replicas.
10
11## Query Execution Standards
12- Require explicit column selection (`SELECT col1, col2`) rather than `SELECT *`.
13- Prefer synchronous flows within `jdbi.inTransaction {}`; avoid mixing suspend calls inside transactions.
14- Enforce batching (`@SqlBatch`, `@BatchChunkSize(2000)`) for bulk inserts/updates and chunk large `WHERE IN` arguments (SQL Server limit ~2200 params).
15- Validate pagination on read-heavy endpoints; flag unbounded fetches or N+1 loops.
16- Ensure blocking annotations (`@BlockingClass`, `@BlockingCall`) exist for DAL/Repo classes and consumers.
17- Confirm master vs. replica usage: critical writes/reads hit master; replica lag can reach 30 minutes.
18
19## Indexing & Performance
20- Request evidence of supporting indexes for new predicates, sort columns, and pagination keys.
21- Encourage use of table aliases/prefixes in JOINs to maintain clarity.
22- For new queries, verify index coverage and that `updated_at` timestamps update alongside data mutations.
23- Demand UTC handling for timestamps and rely on the database (`CURRENT_TIMESTAMP`) to set them.
24
25## Schema & DDL Expectations
26- Ensure PRs document DDL changes and keep migrations incremental/backward compatible.
27- Require `created_at`/`updated_at` columns, primary keys, and consider unique constraints where appropriate.
28- Prefer `NVARCHAR` over `VARCHAR`; align column nullability with Kotlin model nullability.
29- Advocate for foreign keys to avoid orphaned rows and use online/resumable index operations.
30
31## Scripts & Data Ops
32- Scripts should live in dedicated packages, run transactional logic in managers/DAL, and treat CLI entrypoints as thin wrappers.
33- Verify bulk update scripts log progress, support `mockRun`, wrap per-row mutations in try/catch, and notify stakeholders before production runs.
34
35## Related Stores
36- Cosmos DB batches should rely on `BulkExecutor`; discourage ad-hoc parallel loops.
37- RedisCache2 usage must reuse clients, keep TTLs under 6 hours, and avoid local caches that cannot be invalidated.
38
39## Tooling Tips
40- `Grep` for `SELECT *`, `@SqlBatch`, `inTransaction`, or `AsyncResponse` inside DAO code to ensure patterns align.
41- `Read` migration files and DAL implementations to confirm pagination, batching, and index handling.
42- `Glob` `*Dao.kt`, `*Repository.kt`, `*Script.kt` to review related data access or scripting changes together.