sql-cli 1.73.1

SQL query tool for CSV/JSON with both interactive TUI and non-interactive CLI modes - perfect for exploration and automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Minimal lib for testing DataView without TUI
// This allows us to test DataView in isolation while TUI is being refactored

pub mod data {
    pub mod datatable;
    pub mod data_view;
    pub mod data_provider;
}

// Re-export commonly used types at the crate root for convenience
pub use data::datatable::{DataTable, DataRow, DataColumn, DataValue, DataType};
pub use data::data_view::DataView;