![Latest Version] ![Documentation] ![License]
Collection of types and helpers for building hopefully correctly escaped SQL queries.
```rust use formatsqlquery::*;
println!("SELECT {} FROM {} WHERE {} = {}", Column("foo bar".into()), SchemaTable("foo".into(), "baz".into()), Column("blah".into()), QuotedData("hello 'world' foo")); // SELECT "foo bar" FROM foo.baz WHERE blah = 'hello ''world'' foo' ```