sqlite-plugin

Crates.iosqlite-plugin
lib.rssqlite-plugin
version
sourcesrc
created_at2025-03-29 21:20:04.368202+00
updated_at2025-03-29 21:20:04.368202+00
descriptionA Rust crate for building a custom SQLite virtual file system (VFS).
homepagehttps://github.com/orbitinghail/sqlite-plugin
repositoryhttps://github.com/orbitinghail/sqlite-plugin
max_upload_size
id1611737
Cargo.toml error:TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Carl Sverre (carlsverre)

documentation

README

SQLite Plugin

docs.rs   crates.io

sqlite-plugin provides a streamlined and flexible way to implement SQLite virtual file systems (VFS) in Rust. Inspired by sqlite-vfs, it offers a distinct design with key enhancements:

  • Centralized Control: The Vfs trait intercepts all file operations at the VFS level, rather than delegating them directly to file handles. This simplifies shared state management and enables more advanced behaviors.
  • Custom Pragmas: Easily define and handle custom SQLite pragmas to extend database functionality.
  • Integrated Logging: Seamlessly forward logs to SQLite’s built-in logging system for unified diagnostics.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.

Commit count: 0

cargo fmt