![Latest Version] ![Documentation] ![License]

Collection of types and helpers for building hopefully correctly escaped SQL queries.

Example usage

```rust use formatsqlquery::*;

println!("SELECT {} FROM {} WHERE {} = {}", Column("foo bar".into()), Table::with_schema("foo", "baz"), Column("blah".into()), QuotedData("hello 'world' foo")); // SELECT "foo bar" FROM foo.baz WHERE blah = 'hello ''world'' foo' ```