```db.prepare("UPDATE users SET name = ?1 WHERE id = ?2").bind( "John", 17 ),``` Why is bind used he
Why is bind used here instead of doing everything in the sql code

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

select * ... against your whole db and dumping to a local sql file i can ship today