Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
kgOrders
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cam Hayes
kgOrders
Commits
b230b517
Commit
b230b517
authored
Nov 11, 2025
by
Cam Hayes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed minor typo, added password update to logs, and updated DB instructions
parent
070728d5
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
Steps to Update KGOrders Database.pdf
Steps to Update KGOrders Database.pdf
+0
-0
qbAPI.dfm
kgOrdersServer/Source/qbAPI.dfm
+2
-2
qbAPI.pas
kgOrdersServer/Source/qbAPI.pas
+2
-1
No files found.
Steps to Update KGOrders Database.pdf
View file @
b230b517
No preview for this file type
kgOrdersServer/Source/qbAPI.dfm
View file @
b230b517
...
@@ -322,7 +322,7 @@ object fQB: TfQB
...
@@ -322,7 +322,7 @@ object fQB: TfQB
SortSettings.HeaderColorTo = clWhite
SortSettings.HeaderColorTo = clWhite
SortSettings.HeaderMirrorColor = clWhite
SortSettings.HeaderMirrorColor = clWhite
SortSettings.HeaderMirrorColorTo = clWhite
SortSettings.HeaderMirrorColorTo = clWhite
Version = '9.1.
4.5
'
Version = '9.1.
6.4
'
ColWidths = (
ColWidths = (
64
64
64
64
...
@@ -1066,7 +1066,7 @@ object fQB: TfQB
...
@@ -1066,7 +1066,7 @@ object fQB: TfQB
SortSettings.HeaderColorTo = clWhite
SortSettings.HeaderColorTo = clWhite
SortSettings.HeaderMirrorColor = clWhite
SortSettings.HeaderMirrorColor = clWhite
SortSettings.HeaderMirrorColorTo = clWhite
SortSettings.HeaderMirrorColorTo = clWhite
Version = '9.1.
4.5
'
Version = '9.1.
6.4
'
ColWidths = (
ColWidths = (
64
64
64
64
...
...
kgOrdersServer/Source/qbAPI.pas
View file @
b230b517
...
@@ -393,7 +393,7 @@ var
...
@@ -393,7 +393,7 @@ var
SQL
,
name
,
password
,
newPassword
:
string
;
SQL
,
name
,
password
,
newPassword
:
string
;
begin
begin
Memo1
.
Clear
;
Memo1
.
Clear
;
Memo1
.
Lines
.
Add
(
'Updating all passwords to
know
longer store passwords in plain text'
);
Memo1
.
Lines
.
Add
(
'Updating all passwords to
no
longer store passwords in plain text'
);
SQL
:=
'Select * from users'
;
SQL
:=
'Select * from users'
;
doQuery
(
ordersDB
.
UniQuery1
,
SQL
);
doQuery
(
ordersDB
.
UniQuery1
,
SQL
);
while
(
not
ordersDB
.
UniQuery1
.
Eof
)
do
while
(
not
ordersDB
.
UniQuery1
.
Eof
)
do
...
@@ -409,6 +409,7 @@ begin
...
@@ -409,6 +409,7 @@ begin
end
;
end
;
ordersDB
.
UniQuery1
.
Next
;
ordersDB
.
UniQuery1
.
Next
;
end
;
end
;
logger
.
Log
(
3
,
'Finished updating passwords'
);
Memo1
.
Lines
.
Add
(
'Finished updating passwords'
);
Memo1
.
Lines
.
Add
(
'Finished updating passwords'
);
end
;
end
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment