arrow-tiberius 0.1.0

Apache Arrow and SQL Server bridge through Tiberius
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Bidirectional Arrow/MSSQL schema mapping.

/// Arrow/MSSQL column mapping.
pub mod mapping;
/// Arrow/MSSQL table schema mapping.
pub mod table_mapping;
pub(crate) mod type_conversion;

pub use mapping::SchemaMapping;
pub use table_mapping::{
    create_table_sql_from_mappings, mssql_columns_from_mappings,
    plan_arrow_schema_to_mssql_mappings,
};