Skip to main content

quote_ident

Function quote_ident 

Source
pub fn quote_ident(s: &str) -> String
Expand description

Double-quote a SQL identifier.

ยงExample

assert_eq!(dbrest::query::sql_builder::quote_ident("col"), "\"col\"");