mirror of
https://github.com/every-app/open-seo.git
synced 2026-09-14 19:59:50 +08:00
314 B
314 B
EveryApp Learnings
Things to add to EveryApp skill files later.
D1
db.batch()is required for multi-row inserts — D1 has a 100 bind param limit per statement, so multi-rowINSERT VALUES (...), (...)breaks. Use individual INSERT statements batched viadb.batch()(up to 100 statements per call).