Giter Site home page Giter Site logo

gluesql's Introduction

GlueSQL

crates.io npm docs.rs LICENSE Rust Chat codecov.io

SQL Database Engine as a Library

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.

Standalone Mode

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

Installation

  • Cargo.toml
[dependencies]
gluesql = "0.11"
  • CLI application
$ cargo install gluesql

Usage

use gluesql::prelude::*;

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)
    }
}

SQL Library Mode (For Custom Storage)

Installation

sled-storage and memory-storage features are optional, so these are not required for custom storage makers.

[dependencies.gluesql]
version = "0.11"
default-features = false
features = ["alter-table", "index", "transaction", "metadata"]

Four features below are also optional

  • alter-table - ALTER TABLE query support
  • index - CREATE INDEX and DROP INDEX, index support
  • transaction - BEGIN, ROLLBACK and COMMIT, transaction support
  • metadata - SHOW TABLES and SHOW VERSION support

Usage

Two mandatory store traits to implement

pub trait Store<T: Debug> {
    async fn fetch_schema(..) -> ..;
    async fn scan_data(..) -> ..;
}

pub trait StoreMut<T: Debug> where Self: Sized {
    async fn insert_schema(..) -> ..;
    async fn delete_schema(..) -> ..;
    async fn insert_data(..) -> ..;
    async fn update_data(..) -> ..;
    async fn delete_data(..) -> ..;
}

Optional store traits

pub trait AlterTable where Self: Sized {
    async fn rename_schema(..) -> ..;
    async fn rename_column(..) -> ..;
    async fn add_column(..) -> ..;
    async fn drop_column(..) -> ..;
}

pub trait Index<T: Debug> {
    async fn scan_indexed_data(..) -> ..;
}

pub trait IndexMut<T: Debug> where Self: Sized {
    async fn create_index(..) -> ..;
    async fn drop_index(..) -> ..;
}

pub trait Transaction where Self: Sized {
    async fn begin(..) -> ..;
    async fn rollback(..) -> ..;
    async fn commit(..) -> ..;
}

pub trait Metadata {
    fn version(..) -> String;
    async fn schema_names(..) -> ..;
}

GlueSQL.js

GlueSQL.js is a SQL database for web browsers and Node.js. It works as an embedded database and entirely runs in the browser. GlueSQL.js supports in-memory storage backend, but it will soon to have localStorage, sessionStorage and indexedDB backend supports.

More info

SQL Features

GlueSQL currently supports a limited subset of queries. It's being actively developed.

Data Types

  • Numeric INT(8), INTEGER, FLOAT, DECIMAL
  • Date DATE, TIMESTAMP, TIME INTERVAL
  • BOOLEAN, TEXT, UUID, MAP, LIST

Queries

  • CREATE TABLE, DROP TABLE
  • ALTER TABLE - ADD COLUMN, DROP COLUMN, RENAME COLUMN and RENAME TO.
  • CREATE INDEX, DROP INDEX
  • INSERT, UPDATE, DELETE, SELECT
  • GROUP BY, HAVING
  • ORDER BY
  • Transaction queries: BEGIN, ROLLBACK and COMMIT
  • Nested select, join, aggregations ...

You can see tests for the currently supported queries in test-suite/src/*.

Contribution

There are a few simple rules to follow.

  • No mut keywords in the core workspace (except glue.rs).
  • Every error must have corresponding integration test cases to generate.
    (except for Unreachable- and Conflict- error types)

gluesql's People

Contributors

bearney74 avatar boomkim avatar devgony avatar devil-k avatar ever0de avatar heka1024 avatar hyangmin82 avatar inhwa1025 avatar jiwon-dev avatar kwon-heejeong avatar kygost avatar leoppro avatar maruoovv avatar mrgravity817 avatar no-ye avatar noproto avatar panarch avatar pythonbrad avatar redblueflame avatar ryanhossain9797 avatar silathdiir avatar simple6192 avatar slhmy avatar tmdgusya avatar vbbono avatar yellowhse avatar yjh0502 avatar yujonglee avatar zhangchunzhong avatar zmrdltl avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.