mssqlrust 1.0.2

Lightweight Rust library for Microsoft SQL Server using dataset and datatable
Documentation
1
2
3
4
5
6
7
#[derive(Debug, Clone, PartialEq, Default)]
pub struct DataColumn {
    pub name: String,
    pub sql_type: String,
    pub size: Option<u32>,
    pub nullable: bool,
}