prepared-statements
✓ RelevantPrepared statements in Drizzle ORM: concatenate SQL once, reuse precompiled binary for repeated executions; use `.prepare()` then `.execute()` (or `.get()`/`.all()` for SQLite); use `sql.placeholder('name')` for dynamic values.