arrow-tiberius 0.1.0

Apache Arrow and SQL Server bridge through Tiberius
Documentation
//! MSSQL-side schema metadata, identifiers, profile, and DDL helpers.

/// MSSQL runtime cell value model.
pub(crate) mod cell;
/// MSSQL column metadata model.
pub mod column;
/// Deterministic MSSQL DDL rendering helpers.
pub mod ddl;
/// MSSQL identifier types.
pub mod identifier;
/// MSSQL profile types.
pub mod profile;
/// MSSQL type model.
pub mod ty;

pub use column::MssqlColumn;
pub use ddl::{CreateTableOptions, create_table_sql};
pub use identifier::{Identifier, IdentifierPolicy, TableName};
pub use profile::{CompatibilityLevel, MssqlProfile, MssqlVersion};
pub use ty::{MssqlTimePrecision, MssqlType, MssqlTypeLength};