citadeldb-sql 0.8.1

SQL parser, planner, and executor for Citadel encrypted database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod connection;
pub mod datetime;
pub mod encoding;
pub mod error;
pub mod eval;
pub mod executor;
pub mod parser;
pub mod planner;
pub mod prepared;
pub mod schema;
pub mod types;

pub use connection::Connection;
pub use error::{Result, SqlError};
pub use prepared::{PreparedStatement, Row, Rows};
pub use types::{ColumnDef, DataType, ExecutionResult, IndexDef, QueryResult, TableSchema, Value};