sqlt 0.3.2

SQL parser, translator, and linter for MySQL, MariaDB, Postgres, MSSQL, SQLite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `sqlt` — multi-dialect SQL parser and translator.
//!
//! See `CLAUDE.md` for the project guide and `README.md` for usage.

pub mod ast;
pub mod cli;
pub mod dialect;
pub mod emit;
pub mod encoding;
pub mod error;
pub mod json;
pub mod lint;
pub mod parse;
pub mod translate;