2 रिपॉजिटरी
Processes for converting a database into a byte stream and reconstructing it from one.
Distinct from Serialized Database Compatibility: None of the candidates cover the conversion of a full database instance into a byte stream for portability.
Explore 2 awesome GitHub repositories matching data & databases · Database Serializations. Refine with filters or upvote what's useful.
Datascript is an immutable, in-memory state store and schema-based triple store. It manages application state as a versioned database, storing data as immutable facts consisting of an entity, attribute, value, and transaction. The project provides a logic engine for executing Datalog queries with support for implicit joins, recursive rules, and negation. It also features a declarative pull API for retrieving deeply nested entity graphs and related data structures. The database enforces data integrity through schema-driven constraints and attribute types. It supports atomic transactions, plug
Enables the conversion of the entire database state into a format suitable for storage or transmission.
Rusqlite is an embedded database interface and relational database driver that provides a client library for interacting with SQLite. It functions as an SQL query wrapper, enabling the management of local file-based or in-memory databases through a safe interface. The library allows for the extension of native database capabilities by implementing custom scalar functions, collations, and virtual tables. It also supports the embedding of the database engine directly into the application binary to remove external library dependencies. The project covers a broad range of capabilities including
Enables converting a database into a byte stream or restoring a database from a byte stream.