sql5 3.2.17

SQLite compatible database with CJK FTS5 full-text search
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Planner / Executor 模組
//!
//! 使用方式:
//! ```rust
//! use sql5::planner::executor::Executor;
//!
//! let mut db = Executor::new();
//! // db 直接接受 SQL 字串(透過 parser + planner)
//! ```

pub mod executor;
pub mod plan;
pub mod planner;
pub mod transaction;
pub mod constraints;
pub mod datetime;

pub use executor::{Executor, ResultSet};