aboutsummaryrefslogtreecommitdiff
path: root/src/ca/scaexec.cpp
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-04-18 21:09:37 -0400
committerBob Arnson <bob@firegiant.com>2021-04-18 21:12:50 -0400
commit594bb035b8f27d341c982dc0754589a447b9abd6 (patch)
treebb13b0a6d5e03fc5ff406a18682a1e9c0c170aa1 /src/ca/scaexec.cpp
parentbabe3697ec562d6f93f209e23dc03ba77fa57805 (diff)
downloadwix-594bb035b8f27d341c982dc0754589a447b9abd6.tar.gz
wix-594bb035b8f27d341c982dc0754589a447b9abd6.tar.bz2
wix-594bb035b8f27d341c982dc0754589a447b9abd6.zip
Add `Wix4` table prefixes.
Per https://github.com/wixtoolset/issues/issues/5933.
Diffstat (limited to 'src/ca/scaexec.cpp')
-rw-r--r--src/ca/scaexec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ca/scaexec.cpp b/src/ca/scaexec.cpp
index 7a30f52a..b2648361 100644
--- a/src/ca/scaexec.cpp
+++ b/src/ca/scaexec.cpp
@@ -342,7 +342,7 @@ extern "C" UINT __stdcall ExecuteSqlStrings(MSIHANDLE hInstall)
342 hr = WcaReadStringFromCaData(&pwz, &pwzSql); 342 hr = WcaReadStringFromCaData(&pwz, &pwzSql);
343 ExitOnFailure(hr, "failed to read SQL string for key: %ls", pwzSqlKey); 343 ExitOnFailure(hr, "failed to read SQL string for key: %ls", pwzSqlKey);
344 344
345 // If the SqlString row is set to continue on error and the DB connection failed, skip attempting to execute 345 // If the Wix4SqlString row is set to continue on error and the DB connection failed, skip attempting to execute
346 if ((iAttributesSQL & SCASQL_CONTINUE_ON_ERROR) && FAILED(hrDB)) 346 if ((iAttributesSQL & SCASQL_CONTINUE_ON_ERROR) && FAILED(hrDB))
347 { 347 {
348 WcaLog(LOGMSG_STANDARD, "Error 0x%x: continuing after failure to connect to database: %ls", hrDB, pwzDatabase); 348 WcaLog(LOGMSG_STANDARD, "Error 0x%x: continuing after failure to connect to database: %ls", hrDB, pwzDatabase);