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
//! Adapters for existing data sources
//!
//! These adapters implement the `DataProvider` trait for existing data sources,
//! allowing gradual migration to the new architecture.

pub mod buffer_adapter;
pub mod csv_client_adapter;

pub use buffer_adapter::BufferAdapter;
pub use csv_client_adapter::CsvClientAdapter;