hematite-db 0.1.0

A small embeddable SQL database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! SQL interface module

pub mod connection;
pub mod interface;
pub mod result;
pub(crate) mod script;

pub use connection::*;
pub use interface::*;
pub use result::*;
pub use script::{script_is_complete, ScriptIter};

#[cfg(test)]
mod tests;