pub fn quote_string(v: &str) -> StringExpand description
Quote a string for SQL: wrap in single quotes, escape ' as ''.
This is the SQL-standard single-quote escaping accepted by every supported backend; it guards against injection through string values when building literals inline rather than via bind parameters.