So users can support potentially untrustworthy inputs, support something like: ``` .where("id = :id", id = potentially_untrustworthy_string) ``` Can use placeholders: https://docs.rs/sqlparser/latest/sqlparser/ast/enum.Value.html#variant.Placeholder And then fill in from there.
So users can support potentially untrustworthy inputs, support something like:
Can use placeholders: https://docs.rs/sqlparser/latest/sqlparser/ast/enum.Value.html#variant.Placeholder
And then fill in from there.