Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Databases
»
[SOLVED] SQLite Sum()
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
TDBDateEdit component def...
by
1HuntnMan
[
Today
at 07:43:22 pm]
Local Vars often inspect ...
by
SandyG
[
Today
at 07:41:12 pm]
Any support for Perpendic...
by
SandyG
[
Today
at 07:32:22 pm]
7zip DLL is super broken
by
rvk
[
Today
at 07:18:58 pm]
programming with Lazarus
by
MarkMLl
[
Today
at 07:07:51 pm]
environment variables
by
cousinp
[
Today
at 07:06:41 pm]
Listview how to custom or...
by
jenson
[
Today
at 06:10:31 pm]
Hints.
by
wp
[
Today
at 06:03:36 pm]
CLI | Wildcard parameters...
by
MarkMLl
[
Today
at 05:53:49 pm]
Browser User Agent & Frie...
by
MarkMLl
[
Today
at 05:49:58 pm]
How to use newer macOS SD...
by
Hansaplast
[
Today
at 05:42:07 pm]
TStateMachine
by
Thaddy
[
Today
at 05:13:06 pm]
Disable localisation for ...
by
Nitorami
[
Today
at 05:09:21 pm]
Problem with pasting text...
by
zeljko
[
Today
at 03:48:54 pm]
Broken Icon Display on ma...
by
wp
[
Today
at 03:26:40 pm]
Cannot open Access databa...
by
ranny
[
Today
at 03:01:34 pm]
Problems with Gitlab
by
Joanna
[
Today
at 02:27:28 pm]
Extended Module Player
by
Gigatron
[
Today
at 02:20:32 pm]
C++ porting: Is this real...
by
iLya2IK
[
Today
at 12:45:48 pm]
LazCAD – First Release!
by
maurog
[
Today
at 11:32:00 am]
Class designer/editor
by
dseligo
[
Today
at 11:19:16 am]
Searching for a safe alte...
by
Thaddy
[
Today
at 11:14:23 am]
GMP: multiple precision a...
by
Zvoni
[
Today
at 10:43:39 am]
order of evaluation of ov...
by
Thaddy
[
Today
at 10:30:30 am]
Child board for reporting...
by
Joanna
[
Today
at 04:02:52 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] SQLite Sum() (Read 947 times)
Pe3s
Hero Member
Posts: 547
[SOLVED] SQLite Sum()
«
on:
November 23, 2022, 05:48:04 pm »
Hello, I have a question if it is possible to display the result of the summation in a control other than dbgrid?
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button10Click
(
Sender
:
TObject
)
;
begin
ZQuery1
.
SQL
.
Clear
;
ZQuery1
.
SQL
.
Text
:
=
'SELECT SUM(amount) FROM product'
;
ZQuery1
.
Open
;
end
;
«
Last Edit: November 24, 2022, 04:28:29 pm by Pe3s
»
Logged
Thaddy
Hero Member
Posts: 15505
Censorship about opinions does not belong here.
Re: SQLite Sum()
«
Reply #1 on:
November 23, 2022, 06:39:24 pm »
In any text based control, like a memo or even a caption.
(And plz do not use Zeos, use what Freepascal has a default. Zeos is a pain debugging and never has been fit for purpose)
«
Last Edit: November 23, 2022, 06:48:23 pm by Thaddy
»
Logged
My great hero has found the key to the highway. Rest in peace John Mayall.
Playing: "Broken Wings" in your honour. As well as taking out some mouth organs.
Pe3s
Hero Member
Posts: 547
Re: SQLite Sum()
«
Reply #2 on:
November 23, 2022, 07:17:16 pm »
But when I execute this code it still displays in dbgrid
Logged
Pe3s
Hero Member
Posts: 547
Re: SQLite Sum()
«
Reply #3 on:
November 23, 2022, 08:21:36 pm »
What do I need to change in the code to make it add up the time?
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button10Click
(
Sender
:
TObject
)
;
var
bm
:
TBookmark
;
Total
:
Integer
;
begin
bm
:
=
ZQuery1
.
GetBookmark
;
ZQuery1
.
DisableControls
;
try
Total
:
=
0
;
ZQuery1
.
First
;
while
not
ZQuery1
.
Eof
do
begin
Total
:
=
Total
+
ZQuery1
.
FieldByName
(
'Wiek'
)
.
AsInteger
;
ZQuery1
.
Next
;
end
;
Form1
.
Caption
:
=
IntToStr
(
Total
)
;
finally
ZQuery1
.
GotoBookmark
(
bm
)
;
ZQuery1
.
EnableControls
;
end
;
end
;
Logged
paweld
Hero Member
Posts: 1186
Re: SQLite Sum()
«
Reply #4 on:
November 23, 2022, 09:09:24 pm »
This is probably because you are using a only one a TZQuery component in the application, which is connected to the grid via datasource.
Place another ZQuery component on the form, such as ZQuery2
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button10Click
(
Sender
:
TObject
)
;
begin
ZQuery2
.
SQL
.
Clear
;
ZQuery2
.
SQL
.
Text
:
=
'SELECT SUM(wiek) suma_lat FROM pracownik'
;
ZQuery2
.
Open
;
try
Form1
.
Caption
:
=
ZQuery2
.
FieldByName
(
'suma_lat'
)
.
AsString
;
finally
ZQuery2
.
Close
;
end
;
end
;
Logged
Best regards / Pozdrawiam
paweld
dseligo
Hero Member
Posts: 1335
Re: SQLite Sum()
«
Reply #5 on:
November 23, 2022, 09:19:46 pm »
Quote from: paweld on November 23, 2022, 09:09:24 pm
Place another ZQuery component on the form, such as ZQuery2
And don't forget to connect it to ZConnection.
Oh, and Zeos works just fine.
Logged
Pe3s
Hero Member
Posts: 547
Re: SQLite Sum()
«
Reply #6 on:
November 24, 2022, 04:28:15 pm »
Thank you
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Databases
»
[SOLVED] SQLite Sum()
TinyPortal
© 2005-2018