summaryrefslogtreecommitdiff
path: root/src/ext/Util/ca/secureobj.cpp
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-12-19 00:01:29 -0500
committerBob Arnson <github@bobs.org>2021-12-19 14:12:31 -0500
commit32fb169d4c8f5065e43b1351cc3a5b4a3d528588 (patch)
treedfb5d8b061993386403b4e95d7bd5e77767d39bd /src/ext/Util/ca/secureobj.cpp
parent7d0391599aa451f774e2db76528df266abedb004 (diff)
downloadwix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.tar.gz
wix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.tar.bz2
wix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.zip
Consistent-ify primary key column names.
Diffstat (limited to 'src/ext/Util/ca/secureobj.cpp')
-rw-r--r--src/ext/Util/ca/secureobj.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ext/Util/ca/secureobj.cpp b/src/ext/Util/ca/secureobj.cpp
index 72842eb5..e2229c6a 100644
--- a/src/ext/Util/ca/secureobj.cpp
+++ b/src/ext/Util/ca/secureobj.cpp
@@ -3,9 +3,10 @@
3#include "precomp.h" 3#include "precomp.h"
4 4
5// structs 5// structs
6LPCWSTR wzQUERY_SECUREOBJECTS = L"SELECT `Wix4SecureObject`.`Wix4SecureObject`, `Wix4SecureObject`.`Table`, `Wix4SecureObject`.`Domain`, `Wix4SecureObject`.`User`, `Wix4SecureObject`.`Attributes`, " 6LPCWSTR wzQUERY_SECUREOBJECTS = L"SELECT `Wix4SecureObject`.`SecureObject`, `Wix4SecureObject`.`Table`, `Wix4SecureObject`.`Domain`, `Wix4SecureObject`.`User`, `Wix4SecureObject`.`Attributes`, "
7 L"`Wix4SecureObject`.`Permission`, `Wix4SecureObject`.`Component_`, `Component`.`Attributes` FROM `Wix4SecureObject`,`Component` WHERE " 7 L"`Wix4SecureObject`.`Permission`, `Wix4SecureObject`.`Component_`, `Component`.`Attributes` "
8 L"`Wix4SecureObject`.`Component_`=`Component`.`Component`"; 8 L"FROM `Wix4SecureObject`,`Component` "
9 L"WHERE `Wix4SecureObject`.`Component_`=`Component`.`Component`";
9enum eQUERY_SECUREOBJECTS { QSO_SECUREOBJECT = 1, QSO_TABLE, QSO_DOMAIN, QSO_USER, QSO_ATTRIBUTES, QSO_PERMISSION, QSO_COMPONENT, QSO_COMPATTRIBUTES }; 10enum eQUERY_SECUREOBJECTS { QSO_SECUREOBJECT = 1, QSO_TABLE, QSO_DOMAIN, QSO_USER, QSO_ATTRIBUTES, QSO_PERMISSION, QSO_COMPONENT, QSO_COMPATTRIBUTES };
10 11
11LPCWSTR wzQUERY_REGISTRY = L"SELECT `Registry`.`Registry`, `Registry`.`Root`, `Registry`.`Key` FROM `Registry` WHERE `Registry`.`Registry`=?"; 12LPCWSTR wzQUERY_REGISTRY = L"SELECT `Registry`.`Registry`, `Registry`.`Root`, `Registry`.`Key` FROM `Registry` WHERE `Registry`.`Registry`=?";