speed isn't an issue, how do you insert two rows for example using one post request?
speed isn't an issue, how do you insert two rows for example using one post request?

npx wrangler d1 migrations apply to run without needing to supply a y? We're setting up CI to run migrations on deployment and are not seeing them apply.
SELECT email FROM users WHERE name = ?1, then SQLite doesn't need to re-compile SELECT email FROM users WHERE name = ?1 and execute it.5/19/23, 1:29 PM
"d1_databases[0]" bindings must have a "database_id" fieldwhy? why can't I identify the database by name only, it would've been so much easier

npx wrangler d1 migrations applyydb.prepare("UPDATE users SET name = ?1 WHERE id = ?2").bind( "John", 17 ),SELECT email FROM users WHERE name = ?1SELECT email FROM users WHERE name = ?1