GlueSQL is a SQL database library written in Rust.
It provides a parser (sqlparser-rs), execution layer, and optional storages (sled
or memory
) packaged into a single library.
Developers can choose to use GlueSQL to build their own SQL database, or as an embedded SQL database using the default storage engine.
You can use GlueSQL as an embedded SQL database.
GlueSQL provides two reference storage options.
* SledStorage
- Persistent storage engine based on sled
* MemoryStorage
- Non-persistent storage engine based on BTreeMap
In your Cargo.toml
:
toml
[dependencies]
gluesql = "0.9"
```rust use gluesql::*;
fn main() { let storage = SledStorage::new("data/doc-db").unwrap(); let mut glue = Glue::new(storage); let sqls = vec![ "DROP TABLE IF EXISTS Glue;", "CREATE TABLE Glue (id INTEGER);", "INSERT INTO Glue VALUES (100);", "INSERT INTO Glue VALUES (200);", "SELECT * FROM Glue WHERE id > 100;", ];
for sql in sqls {
let output = glue.execute(sql).unwrap();
println!("{:?}", output)
}
} ```
sled-storage
and memory-storage
features are optional, so these are not required for custom storage makers.
toml
[dependencies.gluesql]
version = "0.9"
default-features = false
features = ["sorter", "alter-table", "index", "transaction"]
sorter
- ORDER BY support for non-indexed expressions.alter-table
- ALTER TABLE query supportindex
- CREATE INDEX & DROP INDEX, index supporttransaction
- BEGIN, ROLLBACK and COMMIT, transaction support```rust
pub trait Store
pub trait StoreMut
```rust pub trait AlterTable where Self: Sized { async fn renameschema(..) -> ..; async fn renamecolumn(..) -> ..; async fn addcolumn(..) -> ..; async fn dropcolumn(..) -> ..; }
pub trait Index
pub trait IndexMut
pub trait Transaction where Self: Sized { async fn begin(..) -> ..; async fn rollback(..) -> ..; async fn commit(..) -> ..; } ```
https://github.com/gluesql/gluesql-js
Use SQL in web browsers!
GlueSQL-js provides 3 storage options,
https://sheets.gluesql.com
Turn Google Sheets into a SQL database!
It uses Google Sheets as a storage.
Data is stored and updated from Google Sheets.
GlueSQL currently supports a limited subset of queries. It's being actively developed.
CREATE TABLE
with 8 types: INTEGER
, FLOAT
, BOOLEAN
, TEXT
, DATE
, TIMESTAMP
, TIME
and INTERVAL
.ALTER TABLE
with 4 operations: ADD COLUMN
, DROP COLUMN
, RENAME COLUMN
and RENAME TO
.CREATE INDEX
, DROP INDEX
INSERT
, UPDATE
, DELETE
, SELECT
, DROP TABLE
GROUP BY
, HAVING
ORDER BY
BEGIN
, ROLLBACK
and COMMIT
You can see tests for the currently supported queries in src/tests/*.
There are a few simple rules to follow.
mut
keywords in src/executor
and src/data
.Unreachable-
and Conflict-
error types)