An incomplete Rust SQL parser written using nom.
This parser is a work in progress. It currently supports:
CREATE TABLE
queries;INSERT
queries;SELECT
queries;UPDATE
queries; andDELETE
queries.We try to support both the SQLite and MySQL syntax; where they disagree, we choose MySQL. (It would be nice to support both via feature flags in the future.)