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
use anyhow::Result;
use async_trait::async_trait;

use crate::{dataset::DataSet, repositories::Command};

#[async_trait]
pub trait Service {
    async fn fetch(&mut self, command: Command) -> Result<DataSet>;
}