mssqlrust 1.0.2

Lightweight Rust library for Microsoft SQL Server using dataset and datatable
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod command;
mod parameter;
mod query_executor;
mod dataset_repository;

pub use command::{Command, CommandType};
pub use parameter::Parameter;
pub(crate) use dataset_repository::{DatasetRepository, MssqlDatasetRepository};

#[cfg(test)]
mod dataset_repository_test;