lydongcanh /
yawdb
Yet Another Weird Database (YawDB)
29/100 healthActive repository
RustNo license#database#rust#sql
⑂ 0 forks◯ 0 issuesUpdated Jul 29, 2024
Loading repository data…
you06 / repository
Yet another SQL parser in rust.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Yet Another SQL Parser.
This parser is designed for standard SQL.
Add dependency to your Cargo.toml.
[dependencies]
yasp = { git = "https://github.com/airyworks/yasp" }
use yasp::grammar;
fn main() {
let exprs = grammar::ExprsParser::new()
.parse("select * from sakura; select rin, shizuku, * from uta")
.unwrap();
for expr in exprs {
println!("expr: {}", expr);
}
}
Selected from shared topics, language and repository description—not editorial ratings.
lydongcanh /
Yet Another Weird Database (YawDB)
29/100 health