Crate mssqlrust

Crate mssqlrust 

Source

Re-exports§

pub use services::dataset_service::DatasetService;
pub use services::service::Service;

Modules§

dataset
infrastructure
services

Structs§

Command
Parameter

Enums§

CommandType

Functions§

execute
Execute a Command against the database using provided MssqlConfig. This function wires up the internal repository and service layers.
execute_non_query
Execute a non-query Command (e.g., INSERT/UPDATE/DELETE/DDL) and return the total number of affected rows. If the SQL contains multiple statements, the returned count is the sum of row counts reported by the server.
execute_scalar
Execute a Command and return the first column of the first row as a DataValue. If the command returns no rows, returns Ok(None).