Skip to main content

Crate yugendb_sqlite

Crate yugendb_sqlite 

Source
Expand description

SQLite Rust driver for yugendb.

SQLite is an embedded SQL-backed implementation of yugendb’s storage model:

namespace + collection + key -> serialised typed value

Re-exports§

pub use driver::sqlite;
pub use driver::sqlite_capabilities;
pub use driver::SqliteDriver;
pub use driver::SqliteDriverOptions;
pub use schema::schema_statements;
pub use schema::SqliteStorageSchema;
pub use schema::ALL_SCHEMA_STATEMENTS;
pub use schema::CREATE_EXPIRES_AT_INDEX_SQL;
pub use schema::CREATE_MIGRATION_METADATA_TABLE_SQL;
pub use schema::CREATE_PREFIX_INDEX_SQL;
pub use schema::CREATE_STORE_TABLE_SQL;
pub use schema::MIGRATION_METADATA_TABLE_NAME;
pub use schema::SCHEMA_VERSION;
pub use schema::STORE_TABLE_NAME;

Modules§

driver
SQLite driver implementation.
schema
SQLite schema helpers for the yugendb storage table.