Re-exports§
pub use services::dataset_service::DatasetService;
pub use services::service::Service;
Modules§
Structs§
Enums§
Functions§
- execute
- Execute a
Command
against the database using providedMssqlConfig
. 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 aDataValue
. If the command returns no rows, returnsOk(None)
.