```db.prepare("UPDATE users SET name = ?1 WHERE id = ?2").bind( "John", 17 ),``` Why is bind used he

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