Registry / database / gluesql-core

gluesql-core

JSON →
library0.19.0rscratesunverified

GlueSQL - Open source SQL database engine fully written in Rust with pure functional execution layer, easily swappable storage and web assembly support.

# Cargo.toml [dependencies] gluesql-core = "0.19.0"
INSTALL
IMPORT
SIG · GLUESQL-CORE
G
gluesql-core
databaserustv0.19.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Glue
use gluesql_core::prelude::Glue;

Create an in-memory SQL database and execute a query.

use gluesql_core::prelude::Glue; use gluesql_core::store::MemoryStorage; fn main() { let storage = MemoryStorage::default(); let mut glue = Glue::new(storage); glue.execute("CREATE TABLE test (id INTEGER)").unwrap(); println!("Table created"); }
Debug
Known issues
gotchaRequires feature flags for different storage backends
fix
Enable features like 'memory-storage' or 'sled-storage' in Cargo.toml
affects: >=0.19.0
Upgrade
Version history
0.19.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
17 hits · last 30 days
node
16
Bingbot
1
Resources
gluesql-core — cargo add gluesql-core · libregistry