23 releases

0.9.9 Mar 14, 2025
0.9.8 Dec 20, 2024
0.9.7 Aug 1, 2024
0.9.6 Jan 15, 2024
0.4.2 Mar 24, 2016

#167 in Database interfaces

Download history 140/week @ 2024-12-07 160/week @ 2024-12-14 53/week @ 2024-12-21 34/week @ 2024-12-28 68/week @ 2025-01-04 578/week @ 2025-01-11 583/week @ 2025-01-18 419/week @ 2025-01-25 324/week @ 2025-02-01 376/week @ 2025-02-08 359/week @ 2025-02-15 206/week @ 2025-02-22 353/week @ 2025-03-01 401/week @ 2025-03-08 128/week @ 2025-03-15 59/week @ 2025-03-22

979 downloads per month

MIT/Apache

105KB
2.5K SLoC

SQL lexer

Build Status Crate

Rust library to lex and sanitize SQL. To lex a query and write back to a string:

extern crate sql_lexer;

fn main() {
  let sql = sql_lexer::lex("SELECT * FROM `table`".to_string()).lex();
  println!("{}", sql_lexer::write(sql));
}

To sanitize all content from a query so you just get the generic components:

extern crate sql_lexer;

fn main() {
  println!("{}", sql_lexer::sanitize_string("SELECT * FROM `table` WHERE id = 1".to_string()));
}

This will output:

SELECT * FROM `table` WHERE id = ?

The documentation is available here.

Command line

There's a utility included to sanitize a sql query in a file to facilitate testing:

cargo run -- <path-to-file>

License

Licensed under either of

at your option.

Contribution

Contributions are very welcome. Please make sure that you add a test for any use case you want to add.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps