disable NOCOUNT after executing pricedure

This commit is contained in:
Jonathan Jenne 2022-05-13 13:53:18 +02:00
parent a5c2b93bfe
commit ddaacfe75c

View File

@ -433,7 +433,8 @@ Namespace Winline
@pPrintDebug = 0,
@pLog2DB = {oDebug},
@pComment = 'Multitool/{pTemplate.Name}',
@pResultType = 'CalcPricing'
@pResultType = 'CalcPricing';
SET NOCOUNT OFF;
"
Dim oTable As DataTable = Await Database.GetDatatableAsync(oSQL)