GlueSQL is a SQL database library written in Rust, it provides parser (sql-parser), execution layer, and an optional storage (sled).
Developers can use GlueSQL to build their own SQL databases or they can simply use GlueSQL as an embedded SQL database using default storage.
You can simply use GlueSQL as an embedded SQL database, GlueSQL provides sled as a default storage engine.
In your Cargo.toml
toml
[dependencies]
gluesql = { version = "0.1.10", features = ["sled-storage"] }
```rust use gluesql::*;
fn main() { let storage = SledStorage::new("data.db").unwrap(); let mut glue = Glue::new(storage);
let sql = "
CREATE TABLE Glue (id INTEGER);
INSERT INTO Glue VALUES (100);
INSERT INTO Glue VALUES (200);
SELECT * FROM Glue WHERE id > 100;
DROP TABLE Glue;
";
for query in parse(sqls).unwrap() {
glue.execute(&query).unwrap();
}
} ```
Now you don't need to include sled-storage
. So in Cargo.toml
,
toml
[dependencies]
gluesql = "0.1.10"
All you only need to do is implementing 2 traits: Store
and StoreMut
!
In src/store.rs
,
```rust
pub trait Store
pub trait StoreMut Use SQL in web browsers! :smile:
* More SQL syntax supports - GROUP BY, HAVING ... Not only Then users can make their own SQL database with only using
* It's very early stage, please feel free to do whatever you want to. Examples - GlueSQL-js
GlueSQL-js provides 3 storage options,
* in-memory
* localStorage
* sessionStorage.SQL Features
src/tests/*
:smile:Plans
Providing more
Store
traitsStore
and StoreMut
, but also GlueSQL will separately provides,
* ForeignKey trait
* Transaction trait
* Index traitStore
& StoreMut
, or
* Store
+ StoreMut
+ ForeignKey
but without Index
and Transaction
support.
* with all traits.
* etc...Contribution
Only the thing you need to be aware of is...
- Except for src/glue.rs
and src/tests/
, there is no place to use mut
keyword.