Skip to content

Commit 92bd8c4

Browse files
committed
Code changes to enable building in .NET
1 parent 96b7191 commit 92bd8c4

19 files changed

Lines changed: 648 additions & 497 deletions

SRC/LIBRARY/DepartmentSqlIO.dbl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2283,12 +2283,13 @@ GetExceptionDetails,
22832283
begin
22842284
;;Download the error file
22852285
data exceptionRecords, [#]string
2286+
data errorMessage, string
22862287

22872288
now = %datetime
22882289
writelog("Downloading remote exceptions data file")
22892290
writett("Downloading remote exceptions data file")
22902291

2291-
if (fsc.DownloadText(remoteExceptionsFile,exceptionRecords))
2292+
if (fsc.DownloadText(remoteExceptionsFile,exceptionRecords,errorMessage))
22922293
begin
22932294
data ex_ch, int
22942295
data exceptionRecord, string
@@ -2331,12 +2332,13 @@ GetExceptionDetails,
23312332
begin
23322333
;;Download the error file
23332334
data exceptionRecords, [#]string
2335+
data errorMessage, string
23342336

23352337
now = %datetime
23362338
writelog("Downloading remote exceptions log file")
23372339
writett("Downloading remote exceptions log file")
23382340

2339-
if (fsc.DownloadText(remoteExceptionsLog,exceptionRecords))
2341+
if (fsc.DownloadText(remoteExceptionsLog,exceptionRecords,errorMessage))
23402342
begin
23412343
data ex_ch, int
23422344
data exceptionRecord, string

SRC/LIBRARY/EmployeeSqlIO.dbl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2526,12 +2526,13 @@ GetExceptionDetails,
25262526
begin
25272527
;;Download the error file
25282528
data exceptionRecords, [#]string
2529+
data errorMessage, string
25292530

25302531
now = %datetime
25312532
writelog("Downloading remote exceptions data file")
25322533
writett("Downloading remote exceptions data file")
25332534

2534-
if (fsc.DownloadText(remoteExceptionsFile,exceptionRecords))
2535+
if (fsc.DownloadText(remoteExceptionsFile,exceptionRecords,errorMessage))
25352536
begin
25362537
data ex_ch, int
25372538
data exceptionRecord, string
@@ -2574,12 +2575,13 @@ GetExceptionDetails,
25742575
begin
25752576
;;Download the error file
25762577
data exceptionRecords, [#]string
2578+
data errorMessage, string
25772579

25782580
now = %datetime
25792581
writelog("Downloading remote exceptions log file")
25802582
writett("Downloading remote exceptions log file")
25812583

2582-
if (fsc.DownloadText(remoteExceptionsLog,exceptionRecords))
2584+
if (fsc.DownloadText(remoteExceptionsLog,exceptionRecords,errorMessage))
25832585
begin
25842586
data ex_ch, int
25852587
data exceptionRecord, string

0 commit comments

Comments
 (0)