Hacker News new | ask | show | jobs
by C4K3 2951 days ago
No, only the SQL statement has to be 'static. It's not bullshit.
1 comments

Can you provide real-world example please?
From TFA:

let _rows = sql_query("SELECT * FROM users WHERE username=?", &[username]);

The statement is static, but the [username] part is not, it's just a variable that can have whatever username you want.

and I already told that this example has no meaning, it's just a bullshit - nobody will use it in real app. You want to fetch from db info about the only one user, who's name is a constant? Yeah, all apps do it every day.